Class path contains multiple ** bindings. 2021-11-02 程序之旅,记录 暂无评论 580 次阅读 ## Class path contains multiple ** bindings. ### 问题描述 ```java SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in [jar:file:/E:/apache/maven-repository/org/slf4j/slf4j-simple/1.7.28/slf4j-simple-1.7.28.jar!/org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Found binding in [jar:file:/E:/apache/maven-repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class] ``` 最近出现依赖冲突的问题。 ### 解决方法 maven 依赖冲突问题。IDEA 找到对应的依赖,删除的方法对应如下: 找到需要删除的依赖模块,Maven -> show Dependencies。 ![image-20211102112556486](https://mufeng-blog.oss-cn-beijing.aliyuncs.com/typecho/image-20211102112556486.png) 如果依赖多,会出现密密麻麻的依赖关系,使用 ctrl+F,找到对应的 jar 包 maven 依赖。右键删除依赖。 ![image-20211102112714406](https://mufeng-blog.oss-cn-beijing.aliyuncs.com/typecho/image-20211102112714406.png) ![image-20211102113017265](https://mufeng-blog.oss-cn-beijing.aliyuncs.com/typecho/image-20211102113017265.png) ### 解决后 ![image-20211102113107365](https://mufeng-blog.oss-cn-beijing.aliyuncs.com/typecho/image-20211102113107365.png) 打赏: 微信, 支付宝 标签: java, maven 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。