亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
蓬莱市| 高邮市| 刚察县| 镇坪县| 盐池县| 云林县| 新邵县| 杭州市| 扶风县| 长垣县| 永年县| 武穴市| 峨山| 本溪市| 石棉县| 庄河市| 谷城县| 巴里| 岱山县| 措勤县| 迁安市| 永康市| 衡东县| 大邑县| 简阳市| 扬中市| 张家川| 贵阳市| 奇台县| 西畴县| 博湖县| 西乌珠穆沁旗| 莱州市| 工布江达县| 吉安县| 荃湾区| 晋宁县| 满洲里市| 白玉县| 酉阳| 寻甸|