SpringBoot拦截器

SpringBoot拦截器

  • 新建一个拦截器CommonInterceptor,继承HandlerInterceptorAdapter。给大家说一下,在继承HandlerInterceptorAdapter有三个拦截器是经常使用的:
    1.preHandle在业务处理器处理请求之前被调用
    2.postHandle在业务处理器处理请求执行完成后,生成视图之前执行
    3.afterCompletion在DispatcherServlet完全处理完请求后被调用
/**
 * @Description
 * 新建一个拦截器CommonInterceptor,继承HandlerInterceptorAdapter。给大家说一下,在继承HandlerInterceptorAdapter有三个拦截器是经常使用的:
 * 1.preHandle在业务处理器处理请求之前被调用
 * 2.postHandle在业务处理器处理请求执行完成后,生成视图之前执行
 * 3.afterCompletion在DispatcherServlet完全处理完请求后被调用
 * @Author 
 * @Version V1.0.0
 * @Since 1.0
 * @Date 2019-09-24
 */
@Component
@Slf4j
public class CommonInterceptor implements HandlerInterceptor {
    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler,
                           ModelAndView modelAndView) throws Exception {
        log.info("请求ip:"+request.getRemoteAddr());
        log.info("请求的方法:"+request.getMethod());
        ModelMap modelMap = modelAndView.getModelMap();
        modelMap.addAttribute("titlename","德云社");
    }

}
  • 拦截器配置
/**
 * @Description
 * @Author
 * @Version V1.0.0
 * @Since 1.0
 * @Date 2019-09-20
 */
@Configuration
public class WebMvcConfig extends WebMvcConfigurationSupport {

    @Autowired
    CommonInterceptor commonInterceptor;

    /**
     * 自动配置静态资源
     */
    @Override
    protected void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("/static/**").addResourceLocations(ResourceUtils.CLASSPATH_URL_PREFIX + "/static/");
        super.addResourceHandlers(registry);
    }

    //拦截器
    @Override
    protected void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(commonInterceptor);
    }

}
  • 写个测试接口
/**
 * @Description
 * @Author 
 * @Version V1.0.0
 * @Since 1.0
 * @Date 2019-09-24
 */
@Api(value = "test", description = "测试样例文档")
@Controller
@RequestMapping("/test")
@Slf4j
@Validated
public class InterceptorTest {
    @ApiOperation(value = "拦截器测试", httpMethod = "GET")
    @GetMapping("interceptortest")
    public String index(Model model){
        model.addAttribute("content","hi , 郭德纲 !");
        return "interceptortest";
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值