Caused by: java.lang.ClassNotFoundException: org.springframework.boot.logging.DeferredLogFactory
时间: 2023-11-24 16:49:33 浏览: 221
springboot报错:NoClassDefFoundError: org/springframework/transaction/ReactiveTransactionManager
5星 · 资源好评率100%
这个错误是由于缺少Spring Boot Logging的依赖导致的。你可以通过添加以下依赖项来解决这个问题:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
```
如果你已经添加了这个依赖项,那么你可能需要检查一下你的依赖项版本是否正确。你可以尝试更新你的Spring Boot版本或者使用以下依赖项来解决这个问题:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
这个依赖项包含了Spring Boot Logging所需的所有依赖项。
阅读全文