WebMvcConfigurerAdapter
配置类其实是Spring
内部的一种配置方式,采用JavaBean
的形式来代替传统的xml
配置文件形式进行针对框架个性化定制,下面我们来看一下该类内的常用方法。
本章目标
继承WebMvcConfigurerAdapter
采用JavaBean
形式实现个性化配置定制。
构建项目
本章内容同样不涉及到业务逻辑,我们创建一个web项目即可,pom.xml配置文件如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| ...//省略 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> ...//省略
|
我们创建一个配置实体类型,并继承WebMvcConfigurerAdapter
,代码如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| package com.yuqiyu.chapter34;
import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.*;
import java.util.List;
@Configuration public class WebConfiguration extends WebMvcConfigurerAdapter { }
|
我们在配置类上添加了注解@Configuration
,标明了该类是一个配置类并且会将该类作为一个SpringBean
添加到IOC
容器内,我们打开该注解的源码查看如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
package org.springframework.context.annotation;
import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.springframework.stereotype.Component;
@Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Component public @interface Configuration { String value() default ""; }
|
可以看到在@Configuration
上声明式添加了Spring注入注解@Component
,也就是解释了为什么我们配置了@Configuration
会被自动添加到IOC
容器内。
WebMvcConfigurerAdapter
该抽象类其实里面没有任何的方法实现,只是空实现了接口WebMvcConfigurer
内的全部方法,并没有给出任何的业务逻辑处理,这一点设计恰到好处的让我们不必去实现那些我们不用的方法,都交由WebMvcConfigurerAdapter
抽象类空实现,如果我们需要针对具体的某一个方法做出逻辑处理,仅仅需要在WebMvcConfigurerAdapter
子类中@Override
对应方法就可以了。
配置拦截器
在之前Xml
配置形式天下的时候,我们都是在spring-mvc.xml
配置文件内添加<mvc:interceptor>
标签配置拦截器。拦截器的相关创建请访问第六章:如何在SpringBoot项目中使用拦截器,拦截器配置如下所示:
1 2 3 4 5 6 7 8 9
|
@Override public void addInterceptors(InterceptorRegistry registry) { super.addInterceptors(registry); registry.addInterceptor(new TestInterceptor()).addPathPatterns("/**"); }
|
InterceptorRegistry
内的addInterceptor
需要一个实现HandlerInterceptor
接口的拦截器实例,addPathPatterns
方法用于设置拦截器的过滤路径规则。
配置CORS
跨域我们之前章节也有讲到,请访问第二十五章:SpringBoot添加支持CORS跨域访问,Spring
既然为了集成了CROS
,那就证明了一点,以后前后端分离是一个开发趋势,配置代码如下所示:
1 2 3 4 5 6 7 8 9 10 11 12
|
@Override public void addCorsMappings(CorsRegistry registry) { super.addCorsMappings(registry); registry.addMapping("/cors/**") .allowedHeaders("*") .allowedMethods("POST","GET") .allowedOrigins("*"); }
|
配置ViewController
这一个配置在之前是经常被使用到的,最经常用到的就是”/“、”/index”路径请求时不通过@RequestMapping
配置,而是直接通过配置文件映射指定请求路径到指定View页面,当然也是在请求目标页面时不需要做什么数据处理才可以这样使用,配置内容如下所示:
1 2 3 4 5 6 7 8 9
|
@Override public void addViewControllers(ViewControllerRegistry registry) { super.addViewControllers(registry); registry.addViewController("/").setViewName("/index"); }
|
配置ViewResolver
这个对我们来说很熟悉,只要我们配置html、Jsp页面视图时就会用到InternalResourceViewResolver
配置类,然后设置preffix
、suffix
参数进行配置视图文件路径前缀与后缀。配置代码如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
@Bean public InternalResourceViewResolver resourceViewResolver() { InternalResourceViewResolver internalResourceViewResolver = new InternalResourceViewResolver(); internalResourceViewResolver.setPrefix("/WEB-INF/jsp/"); internalResourceViewResolver.setSuffix(".jsp"); return internalResourceViewResolver; }
@Override public void configureViewResolvers(ViewResolverRegistry registry) { super.configureViewResolvers(registry); registry.viewResolver(resourceViewResolver()); }
|
上述代码中方法resourceViewResolver
上配置了@Bean
注解,该注解会将方法返回值加入到SpringIoc
容器内。
而在configureViewResolvers
方法内配置视图映射为resourceViewResolver
方法返回的InternalResourceViewResolver
实例,这样完成了视图的配置。在下面还有注释掉的一部分代码,这块代码很神奇,我们先来看看org.springframework.web.servlet.config.annotation.ViewResolverRegistry
源码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| package org.springframework.web.servlet.config.annotation;
public class ViewResolverRegistry { ... public UrlBasedViewResolverRegistration jsp() { return this.jsp("/WEB-INF/", ".jsp"); }
public UrlBasedViewResolverRegistration jsp(String prefix, String suffix) { InternalResourceViewResolver resolver = new InternalResourceViewResolver(); resolver.setPrefix(prefix); resolver.setSuffix(suffix); this.viewResolvers.add(resolver); return new UrlBasedViewResolverRegistration(resolver); } } ...
|
可以看到上述源码中有两个jsp方法,而没有参数的方法恰恰跟我们配置的内容一样,这一点看来是Spring
早就根据用户使用习惯添加的默认配置,同样也提供了自定义配置Jsp相关的前缀、后缀内容的方法,
方法内部同样是实例化了一个InternalResourceViewResolver
视图映射类,并将实例添加到了viewResolvers
集合内。
配置MessageConverter
这个配置一般针对于Api
接口服务程序,配置在请求返回时内容采用什么转换器进行转换,我们最常用到的就是fastJson
的转换,配置如下所示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
@Override public void configureMessageConverters(List<HttpMessageConverter<?>> converters) { super.configureMessageConverters(converters); FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter(); FastJsonConfig fastJsonConfig = new FastJsonConfig(); fastJsonConfig.setSerializerFeatures( SerializerFeature.DisableCircularReferenceDetect, SerializerFeature.WriteMapNullValue, SerializerFeature.WriteNullStringAsEmpty ); fastConverter.setFastJsonConfig(fastJsonConfig); converters.add(fastConverter); }
|
内容转换都是针对面向接口进行编写的实现类,都必须implements
HttpMessageConverter
接口完成方法的实现。
总结
以上内容就是本章的全部讲解内容,本章主要讲解了采用JavaBean
配置的形式代替传统的Xml
配置文件的形式进行多种配置声明,根据源码我们可见到Spring
在多年被使用的过程中不断的提供一些默认配置,从而达到用于预计的效果并提高了开发效率。