Migrate a Spring Boot app to NodeJS

Two of the most powerful technologies today for building Restful API applications are the Spring Boot and the NodeJS frameworks. Recently, I was working on an application that was divided into two parts. A backend API server built with Spring Boot and a frontend cross-platform mobile application. The frontend was communicating through HTTP with the Read more about Migrate a Spring Boot app to NodeJS[…]

Java Concurrency using Fork/Join Framework

The Fork/Join Model is a parallel design pattern that sets up and executes concurrently code parts. The execution divides in parallel at multiple points in the program, performs a task in parallel and later it joins at a single point. In java it is implemented by the Fork/Join Framework, an implementation of ExecutorService interface, that Read more about Java Concurrency using Fork/Join Framework[…]