1. 程式人生 > 實用技巧 >springboot框架的搭建(3)--》配置themplates

springboot框架的搭建(3)--》配置themplates

  <!--引入thymeleaf依賴-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

引入依賴 懂得都懂

然後呢

隨便寫點東西 注意要引入th:什麼什麼的要寫完它啊 別寫一點不寫一點 會報錯的An error happened during template parsing (template: "class path resource [t:————》這裡就是我原本想寫個圖片路徑的沒寫完報了這種錯誤 傻了後來才發現 但是你一開始像我這樣寫就絕對不會載入不到頁面的hh

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>welcome to my home </h1>


</body>
</html>

controller層這樣寫吧 記住哦別用@Restcontoller 因為它包含了@responsebody 會返回一個字串給你 剛開始學就懵逼了就不好了hh 這樣就能成功跳轉到這個也面了

package com.lin.durid1.Controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class thycontroller {
    @GetMapping("/thy")
    public String oh(){
        return "index";
    }
}

附一個目錄圖