您好,登錄后才能下訂單哦!
這里的異常分類從系統(tǒng)處理異常的角度看,主要分類兩類:業(yè)務(wù)異常和系統(tǒng)異常。
業(yè)務(wù)異常主要是一些可預(yù)見性異常,處理業(yè)務(wù)異常,用來提示用戶的操作,提高系統(tǒng)的可操作性。
常見的業(yè)務(wù)異常提示:
1)請(qǐng)輸入xxx
2)xxx不能為空
3)xxx重復(fù),請(qǐng)更換
系統(tǒng)異常主要是一些不可預(yù)見性異常,處理系統(tǒng)異常,可以讓展示出一個(gè)友好的用戶界面,不易給用戶造成反感。如果是一個(gè)金融類系統(tǒng),在用戶界面出現(xiàn)一個(gè)系統(tǒng)異常的崩潰界面,很有可能直接導(dǎo)致用戶流失。
常見的系統(tǒng)異常提示:
1)頁面丟失404
2)服務(wù)器異常500
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class IndexController {
@RequestMapping("/")
public String index(ModelMap modelMap) {
modelMap.addAttribute("name","知了一笑") ;
return "index";
}
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8" />
<title></title>
</head>
<body>
<h2 th:text="${name}"></h2>
</body>
</html>
public class ServiceException extends Exception {
public ServiceException (String msg){
super(msg);
}
}
public class ReturnException {
// 響應(yīng)碼
private Integer code;
// 異常描述
private String msg;
// 請(qǐng)求的Url
private String url;
// 省略 get set 方法
}
1)兩個(gè)基礎(chǔ)注解
@ControllerAdvice 定義統(tǒng)一的異常處理類
@ExceptionHandler 定義異常類型對(duì)應(yīng)的處理方式
2)代碼實(shí)現(xiàn)
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
@ControllerAdvice
// 異常以Json格式返回 等同 ExceptionHandler + ResponseBody 注解
// @RestControllerAdvice
public class HandlerException {
/**
* 自定義業(yè)務(wù)異常映射,返回JSON格式提示
*/
@ExceptionHandler(value = ServiceException.class)
@ResponseBody
public ReturnException handler01 (HttpServletRequest request,ServiceException e){
ReturnException returnException = new ReturnException() ;
returnException.setCode(600);
returnException.setMsg(e.getMessage());
returnException.setUrl(String.valueOf(request.getRequestURL()));
return returnException ;
}
/**
* 服務(wù)異常
*/
@ExceptionHandler(value = Exception.class)
public ModelAndView handler02 (HttpServletRequest request,Exception e){
ModelAndView modelAndView = new ModelAndView() ;
modelAndView.addObject("ExeMsg", e.getMessage());
modelAndView.addObject("ReqUrl", request.getRequestURL());
modelAndView.setViewName("/exemsg");
return modelAndView ;
}
}
@Controller
public class ExeController {
/**
* {
* "code": 600,
* "msg": "業(yè)務(wù)異常:ID 不能為空",
* "url": "http://localhost:8003/exception01"
* }
*/
@RequestMapping("/exception01")
public String exception01 () throws ServiceException {
throw new ServiceException("業(yè)務(wù)異常:ID 不能為空");
}
@RequestMapping("/exception02")
public String exception02 () throws Exception {
throw new Exception("出現(xiàn)異常,全體臥倒");
}
}
GitHub地址:知了一笑
https://github.com/cicadasmile
碼云地址:知了一笑
https://gitee.com/cicadasmile
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。