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

溫馨提示×

溫馨提示×

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

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

SpringBoot中404、500異常頁面配置怎么解決

發布時間:2021-06-25 18:02:56 來源:億速云 閱讀:291 作者:chen 欄目:大數據

本篇內容介紹了“SpringBoot中404、500異常頁面配置怎么解決”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

I. 環境搭建

首先得搭建一個web應用才有可能繼續后續的測試,借助SpringBoot搭建一個web應用屬于比較簡單的活;

創建一個maven項目,pom文件如下

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.7</version>
    <relativePath/> <!-- lookup parent from update -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>fastjson</artifactId>
        <version>1.2.45</version>
    </dependency>
</dependencies>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </pluginManagement>
</build>
<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>https://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

依然是一般的流程,pom依賴搞定之后,寫一個程序入口

/**
 * Created by @author yihui in 15:26 19/9/13.
 */
@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class);
    }
}

II. 異常頁面配置

在SpringBoot項目中,本身提供了一個默認的異常處理頁面,當我們希望使用自定義的404,500等頁面時,可以如何處理呢?

1. 默認異常頁面配置

在默認的情況下,要配置異常頁面非常簡單,在資源路徑下面,新建 error 目錄,在下面添加400.html, 500html頁面即可

SpringBoot中404、500異常頁面配置怎么解決

項目結構如上,注意這里的實例demo是沒有使用模板引擎的,所以我們的異常頁面放在static目錄下;如果使用了如FreeMaker模板引擎時,可以將錯誤模板頁面放在template目錄下

接下來實際測試下是否生效, 我們先定義一個可能出現服務器500的服務

@Controller
@RequestMapping(path = "page")
public class ErrorPageRest {

    @ResponseBody
    @GetMapping(path = "divide")
    public int divide(int sub) {
        System.out.println("divide1");
        return 1000 / sub;
    }
}

請求一個不存在的url,返回我們定義的400.html頁面

<html>
<head>
    <title>404頁面</title>
</head>
<body>
<h4>頁面不存在</h4>
</body>
</html>

SpringBoot中404、500異常頁面配置怎么解決

請求一個服務器500異常,返回我們定義的500.html頁面

<html>
<head>
    <title>500頁面</title>
</head>
<body>
<h3 >服務器出現異常!!!</h3>
</body>
</html>

SpringBoot中404、500異常頁面配置怎么解決

2. BasicErrorController

看上面的使用比較簡單,自然會有個疑問,這個異常頁面是怎么返回的呢?

從項目啟動的日志中,注意一下RequestMappingHandlerMapping

SpringBoot中404、500異常頁面配置怎么解決

可以發現里面有個/error的路徑不是我們自己定義的,從命名上來看,這個多半就是專門用來處理異常的Controller -> BasicErrorController, 部分代碼如下

@Controller
@RequestMapping("${server.error.path:${error.path:/error}}")
public class BasicErrorController extends AbstractErrorController {

	@Override
	public String getErrorPath() {
		return this.errorProperties.getPath();
	}

	@RequestMapping(produces = "text/html")
	public ModelAndView errorHtml(HttpServletRequest request,
			HttpServletResponse response) {
		HttpStatus status = getStatus(request);
		Map<String, Object> model = Collections.unmodifiableMap(getErrorAttributes(
				request, isIncludeStackTrace(request, MediaType.TEXT_HTML)));
		response.setStatus(status.value());
		ModelAndView modelAndView = resolveErrorView(request, response, status, model);
		return (modelAndView != null) ? modelAndView : new ModelAndView("error", model);
	}

	@RequestMapping
	@ResponseBody
	public ResponseEntity<Map<String, Object>> error(HttpServletRequest request) {
		Map<String, Object> body = getErrorAttributes(request,
				isIncludeStackTrace(request, MediaType.ALL));
		HttpStatus status = getStatus(request);
		return new ResponseEntity<>(body, status);
	}
}

這個Controller中,一個返回網頁的接口,一個返回Json串的接口;我們前面使用的應該是第一個,那我們什么場景下會使用到第二個呢?

  • 通過制定請求頭的Accept,來限定我們只希望獲取json的返回即可

SpringBoot中404、500異常頁面配置怎么解決

3. 小結

本篇內容比較簡單,歸納為兩句話如下

  • 將自定義的異常頁面根據http狀態碼命名,放在/error目錄下

  • 在異常狀況下,根據返回的http狀態碼找到對應的異常頁面返回

“SpringBoot中404、500異常頁面配置怎么解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

吉木乃县| 景东| 潞西市| 新巴尔虎右旗| 资中县| 津市市| 定日县| 陇川县| 辰溪县| 西丰县| 百色市| 盘山县| 东明县| 固阳县| 遵义县| 望奎县| 大渡口区| 德化县| 合江县| 财经| 枣阳市| 理塘县| 长宁县| 工布江达县| 连江县| 舞阳县| 防城港市| 罗田县| 泗水县| 仙桃市| 资源县| 彭山县| 洪湖市| 六安市| 桦南县| 图片| 建水县| 铜陵市| 石嘴山市| 电白县| 白银市|