一、启动Spring Boot框架报错:
org.springframework.boot.SpringApplication: Application run failed java.lang.IllegalStateException: Error processing condition on org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration
......
二、网上查找了半天信息,都不能解决我的问题
。。。。
。。。。
三、最后修改了Spring Boot的版本
修改前
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.6.RELEASE</version> <relativePath/>
修改后
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.4.3</version> <relativePath/>标签:CacheAutoConfiguration,spring,cache,boot,springframework,Boot,org From: https://blog.csdn.net/go9898/article/details/141872886