1. 程式人生 > 其它 >小白踩坑記:springboot執行一直報錯:There was an unexpected error (type=Not Found, status=404).

小白踩坑記:springboot執行一直報錯:There was an unexpected error (type=Not Found, status=404).

技術標籤:筆記java學習小白踩坑spring bootspring

唉,最近在學習springboot整合thymeleaf模板引擎時,明明都配置的好好的,卻一直給爺報錯,給小爺整懵了:更奇特的是,就挺禿然的就發現似乎哪裡有問題了,一經改正,終於撥雲見日了。。。
首先,我的controller和html頁面反覆好幾遍,確認無誤:
controller:


@Controller
@RequestMapping("/first")
public class firstController {
    @RequestMapping("/thyme")
public String thymeleaf(Model model){ model.addAttribute("name","摘下夢中閃閃滿天星"); return "hello"; } }

hello.html:

// 引入xmlns:th="http://www.thymeleaf.org就可以使用thymeleaf的提示了
<!DOCTYPE html>
<html lang="en"  xmlns:th="http://www.thymeleaf.org"
> <head> <meta charset="UTF-8"> <title>歡迎</title> </head> <body> <div th:text="'為了ta要努力呀:'+${name}"></div> </body> </html>

springboot在引入thymeleaf依賴後,預設的thymeleaf的配置類中對模板進行了前後綴拼串,就不用像jsp一樣去設定prefix和suffix了;預設的是resources目錄下的templates資料夾下的html頁面:

// ThymeleafProperties
public class ThymeleafProperties {
    private static final Charset DEFAULT_ENCODING;
    public static final String DEFAULT_PREFIX = "classpath:/templates/";
    public static final String DEFAULT_SUFFIX = ".html";

但是,天妒英才啊,執行總給我來個There was an unexpected error (type=Not Found, status=404).
也看了許多的部落格,感覺我的和他們的錯誤情況不符;
朦朧之際,彷彿發現這個pom依賴似乎有點問題,和上面幾個長得不大一樣:

// 依賴
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf</artifactId>
            <version>3.0.11.RELEASE</version>
        </dependency>

我這個是直接從thymeleaf官網拷貝的,沒有和springboot整合起來,後果就是出錯出錯出錯。。。

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

Mon Dec 14 11:18:37 CST 2020
There was an unexpected error (type=Not Found, status=404).

緊接著我就匯入了springboot與thymeleaf相關的依賴,覆蓋之前官網內個:

// springboot和thymeleaf整合的依賴
 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

然後呢,再執行就成功啦~~~~~

為了ta要努力呀:摘下夢中閃閃滿天星

經驗教訓與感想:
踩坑填坑才能不斷進步。
小白學習實屬不易,求個大佬帶帶我嘻嘻^ _ ^

============================================================================================

為了夢想,為了鳴鳴,衝啊