Web开发的自动配置类:org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration
1.1. 自动配置的ViewResolver(SpringMVC的视图解析器)
视图的配置mvcProperties对象中:(配置view的前缀后缀,可以在全局的application.properties中配置)
org.springframework.boot.autoconfigure.web.WebMvcProperties.View
1.2 自动配置静态资源
如果进入SpringMVC的规则为/时,Spring Boot的默认静态资源的路径为:
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
测试:
1. 未加上静态资源的配置,此时可以随便访问:
(0)目录:
(1)application.properties
server.port=80server.serverlet-path=*.htmllogging.level.org.springframework=DEBUG
此时可以访问静态资源成功,访问动态资源也成功:
(1)访问静态资源:
(2)访问动态资源
2.加上静态资源的配置,此时访问项目静态资源会报资源找不见错误:
(0)目录结构:
(1)application.properties
server.port=80server.serverlet-path=*.htmllogging.level.org.springframework=DEBUGspring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
(2)访问动态资源:
(3)访问静态资源报错:
(4)解决办法:修改目录结构
启动测试:
1.3 进入规则为*.xxx 或者/, (不指定静态文件路径时可通过路径访问静态资源)
将静态资源放置到webapp下的static目录中即可通过地址访问:
(1)目录结构
(2)配置文件:
server.port=80server.serverlet-path=*.htmllogging.level.org.springframework=DEBUG
或者:
server.port=80server.serverlet-path=/logging.level.org.springframework=DEBUG
(3)测试: