SpringMVC interceptor and springmvc blocker

Source: Internet
Author: User

SpringMVC interceptor and springmvc blocker

1. Create an interceptor class LoginInterceptor

2. This interceptor needs to implement the HandlerInterceptor interface.

3. After implementing the interface, there are three implementation methods: preHandle, postHandle, and afterCompletion.

PreHandle is the function that is executed before the method is executed.

PostHandle indicates the function to be executed after the method is executed.

AfterCompletion is the method in which the entire DispatcherServlet processing is completed (equivalent to executing a method later than postHandle)

 

# We mainly use the preHandle method to execute the function "return false" to indicate that the execution fails and is not followed by the execution. If return true indicates that the execution is successful, the subsequent code is directly executed.

# Configure an interceptor for the XML file

 

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.