springboot:interceptor
程序员文章站
2022-05-10 13:58:00
...
IncpConfig.java
增加拦截器config 继承WebMvcConfigurerAdapter
============================
package org.spring.springboot.configs;
import org.spring.springboot.interceptors.MyIncp1;
import org.spring.springboot.interceptors.MyIncp2;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
@Configuration
public class IncpConfig extends WebMvcConfigurerAdapter {
@Override
public void addInterceptors(InterceptorRegistry registry) {
// 多个拦截器组成一个拦截器链
// addPathPatterns 用于添加拦截规则
// excludePathPatterns 用户排除拦截
//<mvc:mapping path="/admin/**"/>
registry.addInterceptor(new MyIncp1()).addPathPatterns("/**");
registry.addInterceptor(new MyIncp2()).addPathPatterns("/**");
super.addInterceptors(registry);
}
}
============================
MyIncp1.java:拦截器实现
============================
public class MyIncp1 implements HandlerInterceptor{
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception {
System.out.println(">>>MyInterceptor1>>>>>>>在请求处理之前进行调用(Controller方法调用之前)");
return true;// 只有返回true才会继续向下执行,返回false取消当前请求
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler,
ModelAndView modelAndView) throws Exception {
System.out.println(">>>MyInterceptor1>>>>>>>请求处理之后进行调用,但是在视图被渲染之前(Controller方法调用之后)");
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
throws Exception {
System.out.println(">>>MyInterceptor1>>>>>>>在整个请求结束之后被调用,也就是在DispatcherServlet 渲染了对应的视图之后执行(主要是用于进行资源清理工作)");
}
}
增加拦截器config 继承WebMvcConfigurerAdapter
============================
package org.spring.springboot.configs;
import org.spring.springboot.interceptors.MyIncp1;
import org.spring.springboot.interceptors.MyIncp2;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
@Configuration
public class IncpConfig extends WebMvcConfigurerAdapter {
@Override
public void addInterceptors(InterceptorRegistry registry) {
// 多个拦截器组成一个拦截器链
// addPathPatterns 用于添加拦截规则
// excludePathPatterns 用户排除拦截
//<mvc:mapping path="/admin/**"/>
registry.addInterceptor(new MyIncp1()).addPathPatterns("/**");
registry.addInterceptor(new MyIncp2()).addPathPatterns("/**");
super.addInterceptors(registry);
}
}
============================
MyIncp1.java:拦截器实现
============================
public class MyIncp1 implements HandlerInterceptor{
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception {
System.out.println(">>>MyInterceptor1>>>>>>>在请求处理之前进行调用(Controller方法调用之前)");
return true;// 只有返回true才会继续向下执行,返回false取消当前请求
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler,
ModelAndView modelAndView) throws Exception {
System.out.println(">>>MyInterceptor1>>>>>>>请求处理之后进行调用,但是在视图被渲染之前(Controller方法调用之后)");
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
throws Exception {
System.out.println(">>>MyInterceptor1>>>>>>>在整个请求结束之后被调用,也就是在DispatcherServlet 渲染了对应的视图之后执行(主要是用于进行资源清理工作)");
}
}
上一篇: Rails 3.0.5 发布
下一篇: hocate AJAX框架测试发布
推荐阅读
-
springboot源码分析系列(一)--核心注解@SpringBootApplication
-
springboot+mybatis报错找不到实体类的问题
-
SpringBoot validator参数验证restful自定义错误码响应方式
-
springboot 项目启动后无日志输出直接结束的解决
-
SpringBoot+Spring Security无法实现跨域的解决方案
-
spring+mybatis利用interceptor(plugin)兑现数据库读写分离
-
springboot aspect通过@annotation进行拦截的实例代码详解
-
springboot整合shiro多验证登录功能的实现(账号密码登录和使用手机验证码登录)
-
springboot 实现记录业务日志和异常业务日志的操作
-
spring+mybatis利用interceptor(plugin)兑现数据库读写分离