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

溫馨提示×

springboot整合thymeleaf的方法是什么

小億
91
2024-02-23 18:01:34
欄目: 編程語言

  1. 首先,在pom.xml文件中添加Thymeleaf的依賴:
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
  1. 確保在application.properties文件中配置Thymeleaf的模板路徑:
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
  1. 創建一個Controller類,用于處理頁面請求,并返回Thymeleaf模板:
@Controller
public class MyController {

    @RequestMapping("/myPage")
    public String myPage(Model model) {
        model.addAttribute("message", "Hello, Thymeleaf!");
        return "myPage";
    }
}
  1. 創建一個Thymeleaf模板文件(myPage.html),并在文件中使用Thymeleaf的語法進行頁面渲染:
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>My Page</title>
</head>
<body>
    <h1 th:text="${message}"></h1>
</body>
</html>
  1. 啟動Spring Boot應用程序,并訪問http://localhost:8080/myPage,即可看到頁面上顯示"Hello, Thymeleaf!"。

通過以上步驟,就可以實現Spring Boot整合Thymeleaf的功能。

0
通江县| 怀集县| 紫金县| 靖安县| 泾川县| 隆化县| 怀宁县| 明水县| 临漳县| 肇州县| 新竹县| 兴义市| 柳林县| 佛教| 台江县| 新安县| 新昌县| 广南县| 嘉定区| 万山特区| 金溪县| 聂拉木县| 江西省| 汶川县| 滦平县| 河津市| 龙游县| 余江县| 西昌市| 梁平县| 武定县| 资阳市| 蓬莱市| 衢州市| 灵石县| 富平县| 香格里拉县| 景谷| 雷山县| 德保县| 宝应县|