【JAVA】捕获异常类常用注解

捕获类可以定义在hander包下

@ControllerAdvice
public class ExceptionHandle{
	@ExceptionHandle(value = Exception.class)
	@ResponseBody
	public Result handle(Exception e){
		return ResultUtil.error(100 , e.getMessage());
	}
}

你可能感兴趣的:(JAVA)