springboot(9)整合thymeleaf

1、maven配置

springboot默认使用thymeleaf引擎,所以配置极其简单。
添加thymeleaf依赖:

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

2、创建thymeleaf模板

在src/main/resources下创建文件夹static、templates。
其中templates为thymeleaf模板默认路径,static为静态资源默认路径。
这里写图片描述

3、controller

@Controller
public class TestAction {

    @RequestMapping("/index")
    public String index(ModelMap map) {
        map.put("title", "标题");
        // 自动渲染templates路径下的index.html模板
        // 返回的地址前不要加"/",如"/index",会导致部署后项目找不到模板
        return "index";
    }
}

4、thymeleaf模板:index.html

<!DOCTYPE html>
<html>
<head lang="en">
<title>Index</title>
<link href="/css/index.css" rel="stylesheet" />
</head>
<body>
    <div align="center">
        <h1 id="title">
            <span th:text="${title}"></span>
        </h1>
    </div>
</body>
</html>

5、设置不校验html标签

默认情况下,thymeleaf对html标签的格式要求严格。例如缺少封闭符号/,就会抛出异常并跳转到错误页。可通过以下配置关闭html标签校验。

5.1在springboot的配置文件中添加如下配置:

spring.thymeleaf.cache=false
spring.thymeleaf.mode=LEGACYHTML5

5.2、maven添加依赖

<dependency>
  <groupId>net.sourceforge.nekohtml</groupId>
  <artifactId>nekohtml</artifactId>
  <version>1.9.21</version>
</dependency>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值