我正在使用Spring Boot + Thymeleaf。我不明白为什么我在每个请求上收到此错误:
ResourceManager : unable to find resource 'xxxx.vm' in any resource loader.
其中xxxx是视图名称。
在application.properties中设置它不会有帮助:
spring.velocity.checkTemplateLocation=false
答案 0 :(得分:0)
在配置类中设置它将有助于:
@EnableAutoConfiguration(exclude = { DataSourceAutoConfiguration.class,VelocityAutoConfiguration.class })
答案 1 :(得分:0)
我解决了applications.properties中的问题设置:
spring.velocity.enabled=false