启动项目,报`Consider defining a bean of type ‘org.thymeleaf.TemplateEngine‘ in your c

15 阅读1分钟

问题

启动项目,报下面这个异常

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2025-10-23 22:28:23.811 ERROR 11536 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

A component required a bean of type 'org.thymeleaf.TemplateEngine' that could not be found.


Action:

Consider defining a bean of type 'org.thymeleaf.TemplateEngine' in your configuration.

as follows:

在这里插入图片描述

解决

thymeleaf 版本与 Spring Boot 版本不匹配

在这里插入图片描述

不要指定thymeleaf 版本,让它用 Spring Boot 指定的

在这里插入图片描述

通过下面的步骤,可以查看 Spring Boot 管理的依赖版本

在这里插入图片描述

首次发布

hezhongying.blog.csdn.net/article/det…