Web開發的自動配置類: org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration
java
好比:
spring mvc的先後綴配置git
在WebMvcAutoConfiguration中對應方法
對應配置文件
github
若是進入SpringMVC的規則爲/時,SpringBoot的默認靜態資源的路徑爲:
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
若是某個靜態文件不在上面的配置路徑中,那麼從瀏覽器中就訪問不到了web
參考:https://github.com/chengbingh...spring