• ADADADADAD

    springboot整合thymeleaf的方法是什么[ 编程知识 ]

    编程知识 时间:2024-11-19 11:54:03 热度:1℃

    作者:文/会员上传 下载docx

    简介:

    首先,在pom.xml文件中添加Thymeleaf的依赖:<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>

    以下为本文的正文内容,请查阅,本站为公益性网站,复制本文以及下载DOC文档全部免费。

      首先,在pom.xml文件中添加Thymeleaf的依赖:
    <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>
      确保在application.properties文件中配置Thymeleaf的模板路径:
    spring.thymeleaf.prefix=classpath:/templates/spring.thymeleaf.suffix=.html
      创建一个Controller类,用于处理页面请求,并返回Thymeleaf模板:
    @Controllerpublic class MyController {@RequestMapping("/myPage")public String myPage(Model model) {model.addAttribute("message", "Hello, Thymeleaf!");return "myPage";}}
      创建一个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>
      启动Spring Boot应用程序,并访问http://localhost:8080/myPage,即可看到页面上显示"Hello, Thymeleaf!"。

    通过以上步骤,就可以实现Spring Boot整合Thymeleaf的功能。

    springboot整合thymeleaf的方法是什么.docx

    将本文的Word文档下载到电脑

    推荐度:

    下载
    热门标签: springbootthymeleaf
    ADADAD
    热门栏目