sptingboot + thymeleaf 页面500原因之一

好多朋友在初试springboot+thymeleaf时页面一直跳转不过去,一直报500 类似这样的错误。org.thymeleaf.exceptions.TemplateInputException: Error resolving template "login", template might not exist or might not be accessible by any of the configured Template Resolvers

说实话在网上查资料好多都没说清楚到底怎么解决,网上都说在application.properties里面添加 spring.thymeleaf.prefix=classpath:/templates ,但是重启后发现然并卵,后来经过测试发现,正确的配置方式是spring.thymeleaf.prefix=classpath:/templates/,在后面加一个斜杠即可,希望能解决到你的问题。最后看看我的项目结构。

sptingboot + thymeleaf 页面500原因之一_第1张图片

你可能感兴趣的:(日常编程之thymeleaf)