上传者: 42177768
|
上传时间: 2022-02-16 13:47:05
|
文件大小: 70KB
|
文件类型: -
web3j Spring Boot Starter
通过Spring的依赖注入将web3j集成到您的Spring Boot应用程序中。
入门
提供示例应用程序
要使用,请创建一个新的 ,并包括以下依赖项:
Maven:
org.web3j
web3j-spring-boot-starter
4.0.3
Gradle:
compile ( ' org.web3j:web3j-spring-boot-starter:4.0.3 ' )
现在,Spring可以在任何需要的地方为您注入web3j实例:
@Autowired
private Web3j web3j;
如果要通过HTTP连接到默认URL 则不需要其他配置。
否则,只需在应用程序属性中添加端点的地址:
# An infura endpoint
web3j.client-addres