小編給大家分享一下java報(bào)錯(cuò)信息在頁(yè)面顯示的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、卡若網(wǎng)絡(luò)推廣、重慶小程序開(kāi)發(fā)、卡若網(wǎng)絡(luò)營(yíng)銷、卡若企業(yè)策劃、卡若品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供卡若建站搭建服務(wù),24小時(shí)服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.comjava報(bào)錯(cuò)信息在頁(yè)面顯示的方法:首先自定義異常類;然后在service層的拋出異常類,controller類繼承主異常類;接著定義的主異常類,里面可以寫(xiě)多個(gè)自己定義的異常類;最后完成信息類代碼。
java報(bào)錯(cuò)信息在頁(yè)面顯示的方法:
1、自定義異常類
public class ProdProcessOrderException extends RuntimeException { private static final long serialVersionUID = 1L; public ProdProcessOrderException(String message) { super(message); } }
2、service層的代碼
@Service public class GeneralDpPpOrderServiceImpl implements GeneralDpPpOrderService { public ResponseEntitydownLoadExcel(GeneralDpPpOrder generalDpPpOrder) { //......... //省略代碼 if (pOrderRouting == null) { //此處拋出異常 throw new ProdProcessOrderException("當(dāng)前門板流程單沒(méi)有設(shè)置生產(chǎn)工藝."); } } }
service層的拋出異常類
3、controller層的代碼
@RestController @RequestMapping("/api/mes/gene-dp-pp-order") public class GeneralDpPpOrderController extends ExceptionResponse{ //繼承主異常類 @Autowired private GeneralDpPpOrderService generalDpPpOrderService; @RequestMapping(value = "/download-excel", method = RequestMethod.PUT, consumes = "application/json;charset=UTF-8", produces = "application/xls") public ResponseEntitydownLoadExcel(@RequestBody GeneralDpPpOrder gdp) { return generalDpPpOrderService.downLoadExcel(gdp); }
controller類繼承主異常類
4、主異常類代碼
public abstract class ExceptionResponse { @ExceptionHandler(ProdProcessOrderException.class) @ResponseStatus(value = HttpStatus.INTERNAL_SERVER_ERROR) public SystemMessage prodProcessOrderException(ProdProcessOrderException e) { return new SystemMessage(500, e.getMessage()); } }
定義的主異常類,里面可以寫(xiě)多個(gè)自己定義的異常類
5、信息類代碼
public class SystemMessage { private int code; private String message; public SystemMessage(int code, String message) { super(); this.code = code; this.message = message; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; }
通過(guò)以上五步,就可以把后臺(tái)拋出的異常信息,在前端頁(yè)面顯示了
看完了這篇文章,相信你對(duì)java報(bào)錯(cuò)信息在頁(yè)面顯示的方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝各位的閱讀!