解决maven依赖冲突方法
程序员文章站
2022-07-12 22:34:35
...
报错如下:
解决方法:
1.执行命令mvn dependency:tree 查看包依赖树,找出对应冲突的依赖关系,如下图:
2.排除冲突
代码:
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
上一篇: Mybatis实现CRUD操作
下一篇: Mybatis实现CRUD
推荐阅读
-
innodb_index_stats导入备份数据时报错表主键冲突的解决方法
-
Spring中循环依赖的解决方法详析
-
Android ListView与ScrollView冲突的解决方法总结
-
Android之ScrollView嵌套ListView和GridView冲突的解决方法
-
ThinkPHP的cookie和session冲突造成Cookie不能使用的解决方法
-
因Spring AOP导致@Autowired依赖注入失败的解决方法
-
解决自定义$(id)的方法与jquery选择器$冲突的问题
-
解决Maven 项目报错 java.httpservlet和synchronized使用方法
-
解决maven执行命令时提示:cached in the local repository的解决方法小结
-
php中$美元符号与Zen Coding冲突问题解决方法分享