91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java報錯信息在頁面顯示的方法

發布時間:2020-10-22 11:19:44 來源:億速云 閱讀:255 作者:小新 欄目:編程語言

小編給大家分享一下java報錯信息在頁面顯示的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

java報錯信息在頁面顯示的方法:首先自定義異常類;然后在service層的拋出異常類,controller類繼承主異常類;接著定義的主異常類,里面可以寫多個自己定義的異常類;最后完成信息類代碼。

java報錯信息在頁面顯示的方法:

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 ResponseEntity<byte[]> downLoadExcel(GeneralDpPpOrder generalDpPpOrder) {
//.........
//省略代碼
if (pOrderRouting == null) {
//此處拋出異常
throw new ProdProcessOrderException("當前門板流程單沒有設置生產工藝.");
}
}
}

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 ResponseEntity<byte[]> downLoadExcel(@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());
}
}

定義的主異常類,里面可以寫多個自己定義的異常類

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;
}

通過以上五步,就可以把后臺拋出的異常信息,在前端頁面顯示了

看完了這篇文章,相信你對java報錯信息在頁面顯示的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

丰县| 东至县| 澎湖县| 万荣县| 凉城县| 永济市| 本溪市| 汉川市| 壤塘县| 富裕县| 郧西县| 潼南县| 榆中县| 平顶山市| 宜兴市| 安顺市| 芮城县| 武宁县| 德格县| 夏河县| 岳普湖县| 阿鲁科尔沁旗| 大余县| 沭阳县| 佳木斯市| 福安市| 宿州市| 桐乡市| 阿勒泰市| 祁连县| 绍兴县| 西吉县| 兴山县| 承德县| 资中县| 甘南县| 安西县| 乐清市| 两当县| 隆化县| 常山县|