7.3.2 SpringBoot的web开发:接管SpringBoot的Web配置

7.3.2 接管SpringBoot的Web配置
1.如果SpringBoot提供的SpringMVC不符合要求,可以通过一个java配置,加上@EnableWebMvc来实现完全自己控制的MVC配置
2.通常情况下,SpringBoot提供的配置符合我们的需求,可以定义一个java配置类继承WebMvcConfiguraterAdapter来修改一些配置
举例:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* 继承了mvc的适配器 复写其中的addInterceptors方法
*/
@Configuration
public class CustomInterceptConfig extends WebMvcConfigurerAdapter {
private static Logger LOGGER = LoggerFactory.getLogger(CustomInterceptConfig.class);
@Override
public void addInterceptors(InterceptorRegistry registry) {
/**
* 自定义拦截器
*/
HandlerInterceptor handlerInterceptor = new HandlerInterceptor() {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
LOGGER.info("【拦截请求】: 请求路径 {}", request.getRequestURI());
return true;
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
}
};
/**
* 把创建的拦截器注册
*
* /**是拦截所有请求
*/
registry.addInterceptor(handlerInterceptor).addPathPatterns("/**");
}
}
本文讲解如何通过自定义Java配置类并使用@EnableWebMvc注解,完全控制SpringBoot的Web配置,以及如何通过继承WebMvcConfigurerAdapter来微调SpringBoot默认的SpringMVC配置。
1388

被折叠的 条评论
为什么被折叠?



