springboot /thymeleaf 非严格模式

本文介绍在SpringBoot项目中使用Thymeleaf模板引擎的配置方法,并解决因mode设置不当导致的HTML标签解析错误问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在springboot中使用thymeleaf时,需要在在application.properties中配置如下参数

#thymeleaf start
classpath:/templates/*.html
spring.thymeleaf.mode = LEGACYHTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
#开发时关闭缓存,不然没法看到实时页面
spring.thymeleaf.cache=false
#thymeleaf end

其中

spring.thymeleaf.mode 

默认值为: HTML5  为严格模式,此时html中

<meta charset="UTF-8">

若没有以/结尾则会报错

报错:org.xml.sax.SAXParseException: 元素类型 "meta" 必须由匹配的结束标记 "</meta>" 终止。 

此时只要在pom.xml中引入依赖

<dependency>
	<groupId>net.sourceforge.nekohtml</groupId>
	<artifactId>nekohtml</artifactId>
	<version>1.9.22</version>
</dependency>

并将spring.thymeleaf.mode 的值由HTML5更改为为LEGACYHTML5即可

 

转载于:https://my.oschina.net/u/3683339/blog/1557227

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值