How to use the SPRINGMVC interceptor

Source: Internet
Author: User

1. Java Code

 Public classMyfilterImplementsHandlerinterceptor {/*** Execute after generating view*/     Public voidaftercompletion (httpservletrequest request, httpservletresponse response, Object obj, Exception e) throwsException {System.out.println ("View has been generated ... "); }    /*** After the action interaction, block the view before generating the*/     Public voidPosthandle (httpservletrequest request, httpservletresponse response, Object obj, Modelandview mav)throwsException {System.out.println ("After the action interaction, before generating the view ... "); }    /*** intercept before action interaction*/     Public BooleanPrehandle (httpservletrequest request, httpservletresponse response, Object obj)throwsException {System.out.println ("Action interaction before blocking ... "); return true; }}

2. springmvc-servlet.xml file

<!---<mvc:interceptors>  <  class = "Com.erim.web.common.MyFilter" /> </ mvc:interceptors >

How to use the SPRINGMVC interceptor

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.