中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
西乡县| 远安县| 乐业县| 海宁市| 新建县| 昆山市| 昌吉市| 潼南县| 集贤县| 华宁县| 克山县| 珲春市| 龙南县| 景东| 望江县| 石景山区| 兴文县| 沙洋县| 彭山县| 凤山市| 潜山县| 清丰县| 方城县| 合山市| 湖南省| 武城县| 柘荣县| 胶南市| 宁晋县| 鲁甸县| 江陵县| 拜泉县| 定日县| 都匀市| 舟山市| 陕西省| 东乡县| 巴楚县| 凤台县| 浦北县| 杂多县|