◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
spring boot 小 demo 出现 error resolving template 错误
问题描述
作者在构建 spring boot 小 demo 时遇到错误 error resolving template [], template might not exist or might not be accessible by any of the configured template resolvers。
问题分析
该错误表明 thymeleaf 模板引擎无法找到或访问指定模板。
解决方案
要解决此问题,需要确认以下几点:
<dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-thymeleaf</artifactid> </dependency>
spring.thymeleaf.mode=HTML5 spring.thymeleaf.cache=false
代码修正
作者没有提供完整的代码,因此无法提供具体建议。但是,可以根据上述检查点,检查自己的代码并进行必要的更改。
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。