import org.springframework.ui.Model; import org.springframework.web.bind.WebDataBinder; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.InitBinder; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.context.request.WebRequest; import org.springframework.web.servlet.ModelAndView; /** * @author Kevin * @description * @date 2016/7/4 */ @ControllerAdvice public class DemoHandlerAdvice { // 定义全局异常处理,value属性能够过滤拦截条件,此处拦截全部的Exception @ExceptionHandler(value = Exception.class) public ModelAndView exception(Exception exception, WebRequest request) { ModelAndView mv = new ModelAndView("error"); mv.addObject("errorMessage", exception.getMessage()); return mv; } // 此处将键值对添加到全局,注解了@RequestMapping的方法均可以得到此键值对 @ModelAttribute public void addAttributes(Model model){ model.addAttribute("msg","额外的信息"); } // 此处仅演示忽略request中的参数id @InitBinder public void initBinder(WebDataBinder webDataBinder){ webDataBinder.setDisallowedFields("id"); } }
控制器java
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; /** * @author Kevin * @description * @date 2016/7/4 */ @Controller public class DemoController { @RequestMapping("/advice") public String advice(@ModelAttribute("msg") String msg) throws Exception { throw new Exception("参数错误" + msg); } }
控制器中抛出的异常将被自定义全局异常捕获,并返回至error页面。web