SpringBoot项目(19)—处理异常之@ControllerAdvice与@ExceptionHandler注解
可以避免出现只用@ExceptionHandler注解带来的代码复用性很差以及代码冗余问题
可以不必把处理异常的ExceptionHandler和出现异常的方法写在同一个Controller下
1.编写Controller类
@Controller
public class UsersController {
@RequestMapping("/showInfo")
public String showInfo(){
String str = null;
str.length()