当项目没有指定异常处理机制trycatch或者注解等形式springboot拦截器中的BasicErrorController类会执行拦截try catch或者注解等形式springboot拦截器中的BasicErrorController类会执行拦截跳转到配置的拦
Overrideprotected void addInterceptors(InterceptorRegistry registry) {registry.addInterceptor(loginInterceptor).addPathPatterns("/**").excludePathPatterns("/**/error");super.addInterceptors(registry);}
也就是添加“/**/error”error是针对BasicErrorController类的requestMapping的地址就行判断的一般都是默认的如果改动了需要重新指定。 2、 还有一种是使用try catch如果后台该代码不建议使用一个代码量多改起来复杂第二个页面判断的也麻烦
try{代码块}catch (Exception e) {//定义状态前台页面使用model.addAttribute("errorMesage", 1);}
页面加载的时候执行
var error"${errorMesage}";alert(网络异常);
完毕个人是两种都用了以防万一
【本文由:湖北阿里云代理商 http://www.558idc.com/aliyun.html提供,感恩】