我想实现this代码
public void testGetExchangeRate() throws Exception
{
ECKey key = KeyUtils.createEcKey();
String clientName = "server 1";
BitPay bitpay = new BitPay(key, clientName);
if (!bitpay.clientIsAuthorized(BitPay.FACADE_MERCHANT))
{
// Get Merchant facade authorization code
String pairingCode = bitpay.requestClientAuthorization(
BitPay.FACADE_MERCHANT);
// Signal the device operator that this client needs to
// be paired with a merchant account.
System.out.print("Info: Pair this client with your merchant account using the pairing Code: " + pairingCode);
throw new BitPayException("Error:client is not authorized for Merchant facade");
}
}
我包含了这些依赖项:
<dependency>
<groupId>com.github.bitpay</groupId>
<artifactId>java-bitpay-client</artifactId>
<version>v2.0.4</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.5</version>
<type>jar</type>
</dependency>
但是当我运行代码时,我得到了:
testGetExchangeRate(com.payment.gateway.bitpay.impl.BitpayImplTest) Time elapsed: 1.665 sec <<< ERROR!
java.lang.NoSuchFieldError: INSTANCE
at com.payment.gateway.bitpay.impl.BitpayImplTest.testGetExchangeRate(BitpayImplTest.java:55)
问题:您能否就我如何解决这个问题提出一些建议?
答案 0 :(得分:1)
查看github上的库项目的pom.xml
文件的maven依赖项,虽然不是相同的工件版本,但您可以看到java-bitpay-client
依赖于org.apache.httpcomponents
中的几个库{1}}:
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>fluent-hc</artifactId>
<version>4.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-cache</artifactId>
<version>4.3.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.3.1</version>
</dependency>
其中:
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.3</version>
</dependency>
在您的依赖项中,您使用httpcore
版本4.4.5
,因此显然存在依赖项冲突,评论中也由Jacob指出linked类似的问题。
通过Maven dependency mediation机制,您的构建将获取最新的版本4.4.5
,因为它在您的依赖项中明确声明,因此在运行时java-bitpay-client
将在类路径中具有不同的其中一个依赖项的版本,可能会导致最终异常。
然后可能的解决方案是从httpcore
中删除dependencies
依赖项,并让它通过传递依赖项进入类路径(版本4.3
应该进入)。
您还可以通过从项目的控制台运行来确认上述说明:
mvn dependency:tree -Dincludes=com.github.bitpay
除了其他传递依赖项之外,你还应该httpcore
。
旁注:我看到您定义了type
的值为jar
的依赖项。您可以省略,jar
是依赖项type
的默认值,也就是说,依赖项是默认的jar文件。来自官方pom reference:
type
:对应于相关工件的packaging
类型。默认为jar
。