拦截器在Spring MVC中怎么实现自定义?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
1. 引言
拦截器(Interceptor)实现对每一个请求处理前后进行相关的业务处理,类似于Servlet的Filter。
我们可以让普通的Bean实现HandlerIntercpetor接口或继承HandlerInterceptorAdapter类来实现自定义拦截器。
通过重写WebMvcConfigurerAdapter的addIntercetors方法来注册一个计算每一次请求的处理时间的拦截器。
2. 自定义拦截器的实现
2.1 定义拦截器
新建LogInterceptor类,并继承HandlerInterceptorAdapter类,重写preHandle、postHandle这两个方法。
1.preHandle方法表示在请求发生前执行,内容如下:
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { request.setAttribute("begin", System.currentTimeMillis()); return true; }
2.postHandle方法表示在请求完成后执行,内容如下:
@Override public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception { long begin = (long)request.getAttribute("begin"); request.removeAttribute("begin"); long end = System.currentTimeMillis(); System.out.println("本次请求消耗时间为:"+new Long(end-begin)+"ms"); }
2.2 配置拦截器
2.2.1 使用xml配置
1.在配置文件中添加支持MVC的schema
xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd"
2.使用mvc:interceptors标签声明拦截器
<mvc:interceptors> <!-- 使用bean定义一个Interceptor,直接定义在mvc:interceptors根下面的Interceptor将拦截所有的请求 --> <bean class="org.aming.demo.springmvc.interceptor.LogInterceptor"/> <mvc:interceptor> <mvc:mapping path="${指定的URL}"/> <!-- 定义在mvc:interceptor下面的表示是对特定的请求才进行拦截的 --> <bean class="${其他拦截器}"/> </mvc:interceptor> </mvc:interceptors>
说明:没有测试过!!!
2.2.2 使用JavaConfig配置
3.配置拦截器的Bean
@Bean public LogInterceptor logInterceptor() { return new LogInterceptor(); }
4.重写addInterceptors方法,注册拦截器
@Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(logInterceptor()); }
说明:配置类需要继承WebMvcConfigurerAdapter类
3. 运行结果
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注亿速云行业资讯频道,感谢您对亿速云的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。