org.thymeleaf.exceptions.TemplateInputException: Error resolving template [login/loginout], template might not exist or might not be accessible by any of the configured Template Resolvers
时间: 2023-09-21 15:07:59 浏览: 179
thymeleaf-extras-java8time:Thymeleaf“ extras”方言,用于格式化和创建Java 8 Time API对象
这个异常意味着Thymeleaf无法找到名为`login/loginout`的模板文件,有可能是因为它不存在或者不可访问。
通常情况下,Thymeleaf将在classpath下的`templates`目录中查找模板文件。如果你的模板文件并不在这个目录下,你需要在配置文件中指定其他的模板解析器。下面是一个使用Thymeleaf的Spring Boot应用程序的示例配置:
```yaml
spring:
thymeleaf:
prefix: classpath:/templates/
suffix: .html
cache: false
```
上面的配置将Thymeleaf的模板文件前缀设置为`classpath:/templates/`,后缀设置为`.html`,并且禁用了模板缓存。这样,Thymeleaf就会在classpath下的`templates`目录中查找以`.html`结尾的模板文件。
如果你的模板文件确实存在,并且配置文件也没有问题,那么可能是因为你的模板文件没有被正确地打包到应用程序中。你可以检查一下你的构建工具的配置,确保模板文件被正确地打包到了应用程序的classpath中。
阅读全文