0

我正在使用 Maven 3 并尝试构建一个 jar。现在有一个类存在于两个不同的依赖 jar 中。虽然接口中的方法不同,但 maven 正在尝试获取不同 jar 中类中定义的方法。那么如何确保类是从另一个 jar 中挑选出来的呢?例如,所需的类是 xyz.class,并且存在于两个不同的 jar 中:jar1:com/mycompany/xyz.class 和 jar2:com/mycompany/xyz.class但我想要 jar2 中的那个 谢谢

4

1 回答 1

0

This is more of a Java compilation problem than Maven. Check out the answers for: how to load same class from different jars

You'll need to define your custom class loader for this kind of situation.

于 2012-04-30T04:47:39.483 回答