从Jar文件中使用Thymeleaf模板

时间:2016-05-03 16:12:31

标签: java spring spring-boot thymeleaf

我有一个使用Thymeleaf作为视图引擎的Spring-boot应用程序,我想使用部署的Jar外部的文件夹作为Thymeleaf模板的源,我设置变量:

spring.thymeleaf.prefix=classpath:/templates/

“/ templates /”旁边是带有HTML文件的Jar,但我得到一个例外,即Thymeleaf无法解析模板,我尝试了很多配置,如:

spring.thymeleaf.prefix=classpath:templates/
spring.thymeleaf.prefix=classpath:templates
等等,并非一无所获。我做错了什么,甚至可能?

2 个答案:

答案 0 :(得分:7)

好的,看起来这样做是使用文件网址设置值,如下所示:

spring.thymeleaf.prefix=file:./templates/

现在可以使用。

答案 1 :(得分:0)

spring.thymeleaf.prefix =类路径:/模板/

当returen视图名称时,应该是相对路径,而不是以“/”

开头