我有一个控制器
@Controller
@RequestMapping("/test")
public class TestController {
@RequestMapping("/1")
@ResponseBody
public String test1(){
Object o = null;
o.toString();
return "I ma test one!";
}
@RequestMapping("/2")
public String test2(){
Object o = null;
o.toString();
return "test";
}
}
是否可以创建ControllerAdvice来处理控制器方法作为不同的结果,而不将它们移动到不同类的消息。 我的意思是: 1. test1返回一个String消息:如果有异常,用handleError1处理它并返回一条消息。 2. test1返回一个视图:如果有异常,用handleError2处理它并返回/重定向到视图。
@ControllerAdvice
public class AdviceController {
@ExceptionHandler({ NullPointerException.class })
@ResponseStatus(value = HttpStatus.INTERNAL_SERVER_ERROR)
@ResponseBody
public Map handleError1(IllegalStateException ex, HttpServletRequest request) {
Map map = new HashMap();
map.put("code","1000");
map.put("message","NullPointerException of Object");
return map;
}
@ExceptionHandler(NullPointerException.class)
@ResponseStatus(value = HttpStatus.INTERNAL_SERVER_ERROR)
public String handleError2(MultipartException e, RedirectAttributes redirectAttributes) {
redirectAttributes.addFlashAttribute("message", e.getCause().getMessage());
redirectAttributes.addFlashAttribute("code", "1000");
return "redirect:/error";
}
}
如果使用 @ControllerAdvice(注释= RestController.class) @ControllerAdvice(注释= Controller.class)
我们需要创建更多控制器。