通过Spring的依赖注入将web3j集成到Spring Boot应用程序中。此处提供了示例应用程序:
package org.web3j.examples; import java.io.IOException; import org.apache.http.conn.HttpHostConnectException; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import static org.assertj.core.api.Assertions.assertThat; @RunWith(SpringRunner.class) @SpringBootTest public class SpringBootWeb3jSampleApplicationTest { @Autowired private Web3jSampleService web3jSampleService; // This test will only run if you provide a real Ethereum client for web3j to connect to @Test(expected = HttpHostConnectException.class) public void testGetClientVersion() throws IOException { assertThat(web3jSampleService.getClientVersion()).startsWith("Geth/"); } }
要使用 这个github示例 ,请创建一个新的Spring Boot应用程序,并包含以下依赖项:
Maven:
<dependency> <groupId>org.web3j</groupId> <artifactId>web3j-spring-boot-starter</artifactId> <version>1.6.0</version> </dependency>
Gradle:
compile ('org.web3j:web3j-spring-boot-starter:1.6.0')
现在,Spring可以为你提供web3j实例,如果你需要它们:
@Autowired private Web3j web3j;
如果要通过HTTP连接到默认URL http://localhost:8545
,则无需其他配置。
否则,只需在应用程序属性中添加端点的地址:
# An infura endpoint web3j.client-address = https://rinkeby.infura.io/ # Or, an IPC endpoing web3j.client-address = /path/to/file.ipc
如果你希望使用Parity和Geth共有的personal模块方法管理帐户,启用管理客户端:
web3j.admin-client = true
然后Spring可以注入管理客户端:
@Autowired private Admin admin;
某些以太坊操作所需的时间超过了web3j使用的OkHttp3库设置的默认HTTP超时。要配置这些超时,请设置 web3j httpTimeoutSeconds
属性:
web3j.httpTimeoutSeconds = 600
这将设置所有三个OkHttp3超时: connect
, read
, write
。
有效值是任何非负整数。
如果设置值为“0”表示 no timeout
没有超时。
注意:与web3j进行交易不需要这样做。
有关web3j的更多信息,请参阅web3j主页中文版。
======================================================================
分享一些以太坊、EOS、比特币等区块链相关的交互式在线编程实战教程:
汇智网原创翻译,转载请标明出处。这里是原文 如何在Spring Boot中开始web3j开发