SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/D:/java/maven_repository/org/slf4j/slf4j-simple/1.7.33/slf4j-simple-1.7.33.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/D:/java/maven_repository/ch/qos/logback/logback-classic/1.2.10/logback-classic-1.2.10.jar!/org/slf4j/impl/StaticLoggerBinder.class]
时间: 2023-06-28 08:14:21 浏览: 175
这个错误提示表明在你的项目中存在多个SLF4J的实现,导致SLF4J绑定失败。通常情况下,我们应该只保留一个SLF4J的实现,避免出现类似的问题。
解决这个问题的方法如下:
1. 排除冲突的依赖:在POM文件中排除冲突的依赖,只保留需要的SLF4J实现。例如:
```
<dependency>
<groupId>org.example</groupId>
<artifactId>example</artifactId>
<version>1.0</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
</exclusions>
</dependency>
```
2. 强制使用SLF4J的实现:在POM文件中使用dependencyManagement来强制使用指定的SLF4J实现,避免出现多个实现的情况。
```
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.33</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</dependencyManagement>
```
3. 删除多余的SLF4J实现:在项目中删除多余的SLF4J实现,只保留需要的实现。
阅读全文