RestControllerAdvice和ControllerAdvice的区别
时间: 2023-10-31 10:48:49 浏览: 327
RestControllerAdvice
RestControllerAdvice是专门用于RESTful风格的控制器的异常处理类的注解,而ControllerAdvice是用于普通控制器的异常处理类的注解。RestControllerAdvice处理的异常是返回json格式的数据,而ControllerAdvice处理的异常是返回视图或者重定向。
阅读全文