Global exception handling of springmvc4.x Learning series

Source: Internet
Author: User

Program Encoding method: Import Javax.servlet.http.httpservletrequest;import Org.apache.logging.log4j.logmanager;import Org.apache.logging.log4j.logger;import Org.springframework.web.bind.annotation.controlleradvice;import Org.springframework.web.bind.annotation.ExceptionHandler, @ControllerAdvicepublic class Exceptioncontrolleradvice    {private Logger log = Logmanager.getlogger ("Exceptioncontrolleradvice"); @ExceptionHandler public String Expadvice (httpservletrequest req, Exception ex) {Req.setattribute ("ex", Ex.getme        Ssage ());        Log.error (ex);        Returns the error prompt page, which can be treated differently depending on the type of exception in the actual development.    return "Errors/error"; }}xml configuration mode: <bean id= "Exceptionresolver" class= " Org.springframework.web.servlet.handler.SimpleMappingExceptionResolver "> <property name=" exceptionmappings "> <props> <prop key=" java.lang.Exception ">errors/error</prop> <p   ROP key= "java.lang.Throwable" >errors/error</prop> </props>   </property> <property name= "Defaulterrorview" value= "Errors/error"/></bean> 

Global exception handling of springmvc4.x Learning series

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.