我如何在春季启动时为百里香叶设置前缀路径

时间:2019-09-05 06:13:02

标签: spring-boot

如何设置前缀路径(设置新目录)以呈现HTML页面?

我有一个Spring Boot应用程序。我正在使用2.1.7版本。

  • 我为查看页面设置了新路径。

2 个答案:

答案 0 :(得分:2)

您可以使用基本设置,也可以通过覆盖application.properties中的属性来提供自己的自定义页面。

在构建URL时会被前缀用来查看名称的前缀。

spring.thymeleaf.prefix=classpath:/config/templates/

答案 1 :(得分:1)

在Application.properties中添加以下行

spring.thymeleaf.check-template-location=true
spring.thymeleaf.prefix=classpath:/templates/views/    #this is the main
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.servlet.content-type=text/html
spring.thymeleaf.cache=false
spring.main.allow-bean-definition-overriding=true