SpringBoot 使用Thymeleaf 开发web页面

本文介绍了如何在SpringBoot项目中集成Thymeleaf进行Web页面开发。首先,新建SpringBoot项目并添加Web和Thymeleaf的依赖;接着,配置Thymeleaf属性以关闭开发时的缓存;然后,编写Controller处理HTTP请求;最后,创建templates目录下的site文件夹,放入index.html文件,并能够通过访问localhost:8080或localhost:8080/index来查看页面。
摘要由CSDN通过智能技术生成

 

1. 新建一个SpringBoot项目,添加web和thymeleaf的依赖。 在 pom.xml中的代码:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

2. 配置属性。Spring Boot官方文档建议在开发时将缓存关闭。 在application.yml中的spring: 下面添加代码

spring:
  thymeleaf:
    prefix: classpath:/templates/
    check-template-location: true
    suffix: .html
    encoding: UTF-8
    mode: LEGACYHTML5
    cache: false

3. 编写Controller类。

@Api("网站首页和关于页面")
@Controller
public class HomeController {

    @ApiIgnore
    @GetMapping(value = {"", "/index"})
    public String index() {
        return "site/index";
    }
}

4. 在resources/templates 下面创建一个site文件夹,创建一个index.html文件。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>使用thymeleaf</title>
</head>
<body>
    <h1>Hello, Spring Boot!</h1>
</body>
</html>

访问 localhost:8080或者localhost:8080/index

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值