springboot web 开发

什么是webjars:

 public void addResourceHandlers(ResourceHandlerRegistry registry) {
            if (!this.resourceProperties.isAddMappings()) {
                logger.debug("Default resource handling disabled");
            } else {
                this.addResourceHandler(registry, "/webjars/**", "classpath:/META-INF/resources/webjars/");
                this.addResourceHandler(registry, this.mvcProperties.getStaticPathPattern(), (registration) -> {
                    registration.addResourceLocations(this.resourceProperties.getStaticLocations());
                    if (this.servletContext != null) {
                        ServletContextResource resource = new ServletContextResource(this.servletContext, "/");
                        registration.addResourceLocations(new Resource[]{resource});
                    }

                });
            }
        }

通过webjars添加jquery

<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>jquery</artifactId>
    <version>3.6.3</version>
</dependency>

访问静态资源

默认静态资源配置:

我们可以通过这几个目录访问静态资源:

  1. "classpath:/META-INF/resources/"

  1. "classpath:/resources/"

  1. "classpath:/static/"

  1. "classpath:/public/"

  1. localhost:8080/webjars/ ,这个需要导入webjars

访问优先级:resources>static(默认)>public

自定义静态资源目录:

在application.yaml文件里面增加配置:

spring: 
  mvc:
    static-path-pattern: /static/**,/public/**,/resources/**,/META-INF/resources/**,/webjars/**/,/favicon.ico

目录用逗号隔开,一旦启用这个配置,默认的静态配置全部失效

首页

默认首页从下面找index.html

  1. "classpath:/templates/"

  1. "classpath:/static/"

不能直接放到resources,public(这个应该可以的,但我测试的不行,springboot版本2.6.11)目录下面

配置favorite.ico

使用yaml配合

spring:   
  mvc:
    favicon:
      enabled: false

然后再public目录下放一个favorite.ico图标

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值