错误信息如下 SLF4J: Found binding in [jar:file:/C:/Users/13668/.m2/repository/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/C:/Users/13668/.m2/repository/org/slf4j/slf4j-log4j12/1.7.28/slf4j-log4j12-1.7.28.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder] 请按照<dependency> <groupId> org.apache.cassandra</groupId> <artifactId>cassandra-all</artifactId> <version>0.8.1</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> </exclusions> </dependency>的格式写一个支持文件的代码
时间: 2023-08-18 08:07:54 浏览: 163
显示错误信息log4j
4星 · 用户满意度95%
这是一个Maven项目的pom.xml文件配置,需要将org.apache.cassandra的cassandra-all版本号改为你需要的版本号。
```
<dependencies>
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-all</artifactId>
<version>0.8.1</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
```
这个配置的作用是排除slf4j-log4j12的依赖,使得项目在运行时使用slf4j的默认实现,避免出现SLF4J的binding问题。
阅读全文