3

SpringBoot 之web开发

1、自动配置类说明

Web开发的自动配置类: org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration
clipboard.png

clipboard.png
比如:
spring mvc的前后缀配置

clipboard.png
在WebMvcAutoConfiguration中对应方法
clipboard.png
对应配置文件
clipboard.png

2、静态资源配置说明

如果进入SpringMVC的规则为/时,SpringBoot的默认静态资源的路径为:
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
如果某个静态文件不在上面的配置路径中,那么从浏览器中就访问不到了

3、自定义消息转化器

  • 原有的spring mvc 配置

clipboard.png

  • springboot 配置

clipboard.png

4、自定义拦截器

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

参考:https://github.com/chengbingh...


dhxx
37 声望19 粉丝

中间件相关