java-study-springboot-基礎學習-05-springboot web開發

SpringBoot 之web開發

一、自動配置類說明

Web開發的自動配置類: org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration
clipboard.pngjava

clipboard.png
好比:
spring mvc的先後綴配置git

clipboard.png
在WebMvcAutoConfiguration中對應方法
clipboard.png
對應配置文件
clipboard.pnggithub

二、靜態資源配置說明

若是進入SpringMVC的規則爲/時,SpringBoot的默認靜態資源的路徑爲:
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
若是某個靜態文件不在上面的配置路徑中,那麼從瀏覽器中就訪問不到了web

三、自定義消息轉化器

  • 原有的spring mvc 配置

clipboard.png

  • springboot 配置

clipboard.png

四、自定義攔截器

  • 繼承org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter

參考:https://github.com/chengbingh...spring

相關文章
相關標籤/搜索