如何在Spring Boot中開始web3j開發以太坊
阿新 • • 發佈:2018-11-26
通過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連線到預設URLhttp://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;
HTTP客戶端配置
某些以太坊操作所需的時間超過了web3j使用的OkHttp3庫設定的預設HTTP超時。要配置這些超時,請設定web3j httpTimeoutSeconds
屬性:
web3j.httpTimeoutSeconds = 600
這將設定所有三個OkHttp3超時:connect
,read
,write
。
有效值是任何非負整數。
如果設定值為“0”表示no timeout
沒有超時。
注意:與web3j進行交易不需要這樣做。
更多的資訊
有關web3j的更多資訊,請參閱web3j主頁中文版。
分享2個java以太坊、比特幣相關的互動式線上程式設計實戰教程:
- java以太坊開發教程,主要是針對java和android程式設計師進行區塊鏈以太坊開發的web3j詳解。
- java比特幣開發教程,本課程面向初學者,內容即涵蓋比特幣的核心概念,例如區塊鏈儲存、去中心化共識機制、金鑰與指令碼、交易與UTXO等,同時也詳細講解如何在Java程式碼中整合比特幣支援功能,例如建立地址、管理錢包、構造裸交易等,是Java工程師不可多得的比特幣開發學習課程。
匯智網原創翻譯,轉載請標明出處。這裡是原文如何在Spring Boot中開始web3j開發