目的是,更友好的页面访问。
自定义的异常捕获类
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;
import javax.servlet.http.HttpServletRequest;
import java.util.HashMap;
import java.util.Map;
@RestControllerAdvice
public class CustomExtHandler {
private static final Logger LOGGER = LoggerFactory.getLogger(CustomExtHandler.class);
@ExceptionHandler(value = {Exception.class})
Object handleException(Exception e, HttpServletRequest request){
LOGGER.error("url: {}, msg: {}", request.getRequestURL(), e.getMessage());
Map<String, Object> map = new HashMap<>();
map.put("code", 100);
map.put("msg", e.getMessage());
map.put("url", request.getRequestURL());
return map;
}
}
这里的 @ExceptionHandler(value = {Exception.class}) , 表示 捕获 全部异常。
注意:
通过 controller 模拟异常。
@RequestMapping(value = "/api/v1/test_ext")
public Object index(){
int i= 1/0;
return new User(29,"abc","139",new Date());
}
测试,访问 http://localhost:8080/api/v1/test_ext
{
"msg": "/ by zero",
"code": 100,
"url": "http://localhost:8080/api/v1/test_ext"
}
返回自定义的页面
设置捕获的处理方法,在CustomExtHandler,添加方法。
@ExceptionHandler(value = {MyException.class})
Object handleMyException(MyException e, HttpServletRequest request){
//进行页面跳转
ModelAndView modelAndView = new ModelAndView();
modelAndView.setViewName("error.html");
modelAndView.addObject("msg", e.getMsg());
return modelAndView;
}
这里做了 自定义的 页面跳转。 不适合 前后端分离的开发模式。
还是返回 json 更好。
return new MyException("601", "自定义的错误页面,给到前台。");
自定义返回的Json。
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class MyException extends RuntimeException {
private String code;
private String msg;
}
|