创建springboot配置文件application.roperties
在创建resouces目录下创建application.properties,创建完成后会出现一个绿叶图标
打开application.properties,添加如下配置:
spring.mvc.view.prefix=classpath:/templates/
spring.mvc.view.suffix=.html
优化
1.依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
application.properties是否加了配置:
#thymelea模板配置
spring.thymeleaf.prefix=classpath:/templates/
# templates中的所有文件后缀名
spring.thymeleaf.suffix=.html
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.cache=false
检查.html文件是否放在了resource–>templates文件夹路径下,以及css,js等的外部包是否放在了resource–>static文件夹路径下。
html文件里引入方式为:
<script th:src="@{/js/jquery.js}" type="text/javascript"></script>
从static位置后开始写,如果想静态编辑一起引入,可以:
<script th:src="@{/js/jquery.js}" src="../static/js/jquery.js" type="text/javascript"></script>
本文介绍如何在SpringBoot项目中配置Thymeleaf模板引擎,包括设置application.properties文件中的视图解析路径、依赖引入及资源文件存放位置等。
1037

被折叠的 条评论
为什么被折叠?



