thymeleaf模板

页面模板

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<meta>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<!--/*@thymesVar id="message" type="java.lang.String"*/-->
    <h1 th:text="${message}">Hello World</h1>
</body>
</html>

application.properties

#thymelea模板配置
spring.thymeleaf.suffix=.html
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.encoding=UTF-8
#spring.thymeleaf.servlet.content-type=text/html
#html5严格检查
#spring.thymeleaf.mode=HTML5
#html5非严格检查
spring.thymeleaf.mode=LEGACYHTML5
原文地址:https://www.cnblogs.com/tianphone/p/10943471.html