③. webjar 了解
- ②. 例如,添加jquery
<dependency> <groupId>org.webjars</groupId> <artifactId>jquery</artifactId> <version>3.5.1</version> </dependency>
③. 访问地址:http://localhost:8888/webjars/jquery/3.5.1/jquery.js 后面地址要按照依赖里面的包路径
④. web场景-welcome与favicon功能
①. 静态资源路径下 index.html
可以配置静态资源路径
但是不可以配置静态资源的访问前缀。否则导致 index.html不能被默认访问
spring: # mvc: # 静态资源的访问前缀 # static-path-pattern: /TANGZHI/** # 可以配置静态资源路径 resources: static-locations: [classpath:/haha/]
②. 自定义Favicon
指网页标签上的小图标
favicon.ico 放在静态资源目录下即可
spring: # mvc: # static-path-pattern: /res/** 这个会导致 Favicon 功能失效