springboot整合thymeleaf跳转html页面

本文介绍了如何在SpringBoot项目中集成Thymeleaf模板引擎,包括添加依赖、配置模板引擎、创建HTML页面、编写Controller处理请求,以及启动应用并展示动态数据。通过实例展示了Thymeleaf在页面跳转和数据绑定上的应用。
摘要由CSDN通过智能技术生成

1、在pom.xml文件中添加Thymeleaf依赖。确保引入了spring-boot-starter-thymeleaf依赖,如下所示:

<dependencies>
    <!-- 其他依赖 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
</dependencies>

2、配置Thymeleaf模板引擎。在application.properties或application.yml文件中添加以下配置:
application.properties:

spring.thymeleaf.enabled=true
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html

application.yml:

spring:
  thymeleaf:
    enabled: true
    prefix: classpath:/templates/
    suffix: .html

3、创建HTML页面。在src/main/resources/templates/目录下创建HTML文件,例如welcome.html,并在该文件中编写需要展示的内容,例如:

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>Welcome Page</title>
</head>
<body>
    <h1>Welcome, <span th:text="${name}"></span>!</h1>
</body>
</html>

4、创建Controller类,并编写相应的请求处理方法。例如,创建一个WelcomeController类,定义一个处理欢迎页面请求的方法,如下所示:

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;

@Controller
public class WelcomeController {
    
    @GetMapping("/welcome")
    public String welcomePage(@RequestParam("name") String name, Model model) {
        model.addAttribute("name", name);
        return "welcome";
    }
}

在上面的例子中,welcomePage方法接受一个名为name的请求参数,并将其传递给Thymeleaf模板的name变量。
5、启动应用程序并访问对应的URL。启动Spring Boot应用程序,并在浏览器中访问/welcome?name=JohnURL,将会跳转到welcome.html页面,并显示欢迎消息。
跳转页面展示

在页面中,Thymeleaf的语法${name}将会被替换为John,因为我们在Controller方法中将name参数传递给了模型。
这样,就完成了Spring Boot整合Thymeleaf的示例,并演示了如何进行页面跳转和数据展示。你可以根据自己的需求在Thymeleaf模板中添加更多动态数据,以及使用Thymeleaf提供的丰富的表达式和指令来实现更复杂的功能。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

FirstTalent

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值