我有一个使用Thymeleaf作为视图引擎的Spring-boot应用程序,我想使用部署的Jar之外的文件夹作为Thymeleaf模板的源,我设置了变量:
spring.thymeleaf.prefix=classpath:/templates/
“/ templates /”旁边是带有HTML文件的Jar,但是我得到一个例外,即Thymeleaf无法解析模板,我尝试了很多配置,例如:
spring.thymeleaf.prefix=classpath:templates/
spring.thymeleaf.prefix=classpath:templates
等等,不是没有用。我做错了什么,甚至可能吗?
好的,看起来像这样做的方法是使用文件URL设置值,如下所示:
spring.thymeleaf.prefix=file:./templates/
它现在有效。
spring.thymeleaf.prefix =类路径:/模板/
当返回视图名称时,应该是相对路径,而不是以“/”开头