Spring MVC 使用@ResponseStatus注解业务异常
2020-07-31 10:52 更新
业务异常可以使用@ResponseStatus
来注解。当异常被抛出时,ResponseStatusExceptionResolver
会设置相应的响应状态码。DispatcherServlet
会默认注册一个ResponseStatusExceptionResolver
以供使用。
ResponseStatus注解的使用非常简单,我们创建一个异常类,加上注解
package com.zj.exception;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(value=HttpStatus.FORBIDDEN,reason="用户不匹配")
public class UserNotMatchException extends RuntimeException{
}
ResponseStatus注解是修饰类的
它有两个属性,value属性是http状态码,比如404,500等。reason是错误信息
写一个目标方法抛出该异常
@RequestMapping("/testResponseStatus")
public String testResponseStatus(int i){
if(i==0)
throw new UserNotMatchException();
return "hello";
}
使用了ResponseStatus注解之后,用户看到的异常界面正是我们自己定义的异常,而不再是一大堆用户看不懂的代码。
以上内容是否对您有帮助:
更多建议: