Lightweight Ethereum Clients Using Web3j 1. Introduction This tutorial introduces Web3j, a Java implementation of the popular Web3 abstraction library. Web3j is used to interact with the Ethereum network by connecting to Ethereum nodes using JSON-RPC or familiar standards like HTTP, WebSockets, IPC. Ethereum is a whole topic unto itself so let’s first… Continue Reading web3j

Mapping A Hibernate Query to a Custom Class Persistence Hibernate 1. Overview When we use Hibernate to retrieve data from the database, by default, it uses the retrieved data to construct the whole object graph for the object requested. But sometimes we might want to retrieve only part of the… Continue Reading hibernate-query-to-custom-class

Create a Custom FailureAnalyzer with Spring Boot 1. Overview A FailureAnalyzer in Spring Boot offers a way to intercept exceptions that occur during the startup of an application causing an application startup failure. The FailureAnalyzer replaces the stack trace of the exception with a more readable message represented by a… Continue Reading spring-boot-failure-analyzer