xfire冲突问题解决(maven配置)
Posted moseast
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xfire冲突问题解决(maven配置)相关的知识,希望对你有一定的参考价值。
1、xfire与spring冲突解决方法,将spring从maven配置中去掉:
<!-- https://mvnrepository.com/artifact/org.codehaus.xfire/xfire-all --> <dependency> <groupId>org.codehaus.xfire</groupId> <artifactId>xfire-all</artifactId> <version>1.2.6</version> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> </exclusion> </exclusions> </dependency>
2、xfire与其他webservice的jar包冲突,maven配置文件:
<!-- https://mvnrepository.com/artifact/org.codehaus.xfire/xfire-core --> <dependency> <groupId>org.codehaus.xfire</groupId> <artifactId>xfire-core</artifactId> <version>1.2.6</version> </dependency> <!-- https://mvnrepository.com/artifact/org.codehaus.xfire/xfire-aegis --> <dependency> <groupId>org.codehaus.xfire</groupId> <artifactId>xfire-aegis</artifactId> <version>1.2.6</version> </dependency>
如果有用,请随手顶一下,让更多的人看到,谢谢!
以上是关于xfire冲突问题解决(maven配置)的主要内容,如果未能解决你的问题,请参考以下文章