日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

017_SpringBoot异常处理方式-自定义错误页面

發布時間:2025/5/22 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 017_SpringBoot异常处理方式-自定义错误页面 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1. 使用maven構建SpringBoot的名叫spring-boot-exception1項目

2. pom.xml?

<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.bjbs</groupId><artifactId>spring-boot-exception1</artifactId><version>0.0.1-SNAPSHOT</version><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>1.5.13.RELEASE</version></parent><!-- 修改jdk版本 --><properties><java.version>1.8</java.version><!-- 指定thymeleaf和thymeleaf-layout-dialect高版本可以防止html標簽不規范報錯 --><thymeleaf.version>3.0.2.RELEASE</thymeleaf.version><thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version></properties><dependencies><!-- springBoot的啟動器 --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency></dependencies> </project>

3. 新建UserController.java

package com.bjbs.controller;import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping;/*** SpringBoot處理異常方式一: 自定義錯誤頁面*/ @Controller public class UserController {@RequestMapping("/nullException")public String nullException(){String str = null;str.length();return "index";}@RequestMapping("/byZeroException")public String byZeroException(){int a = 10/0;return "index";}@RequestMapping("/index")public String indexhtml(){return "index";} }

4. 新建App.java

package com.bjbs;import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;/*** springBoot啟動類*/ @SpringBootApplication public class App {public static void main(String[] args) {SpringApplication.run(App.class, args);} }

5. SpringBoot默認的處理異常的機制: SpringBoot默認的已經提供了一套處理異常的機制。一旦程序中出現了異常SpringBoot會像/error的url發送請求。在SpringBoot中提供了一個叫BasicExceptionController來處理/error請求, 然后跳轉到默認顯示異常的頁面來展示異常信息。

6. 運行項目, 使用瀏覽器訪問空指針異常

7. 在src/main/resources/templates下, 新建index.html?

<!DOCTYPE html> <html><head><meta charset="UTF-8" /><title>主頁</title></head><body><span th:text="Hello"></span></body> </html>

8. 在src/main/resources/templates下, 新建error.html, 注意: 名稱必須叫error。

<!DOCTYPE html> <html><head><meta charset="UTF-8" /><title>錯誤提示頁面</title></head><body>出錯了, 請與管理員聯系。<span th:text="${exception}"></span></body> </html>

9. 運行項目, 使用瀏覽器訪問空指針異常

10. 運行項目, 使用瀏覽器訪問除數為0異常?

總結

以上是生活随笔為你收集整理的017_SpringBoot异常处理方式-自定义错误页面的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。