From Akka in Action, Second Edition by Francisco Lopez-Sancho This article discusses fault tolerance. Take 35% off Akka in Action, Second Edition by entering fccabraham2 into the discount code box at checkout at manning.com. What fault tolerance is (and what… Continue Reading →
From Akka in Action, Second Edition by Francisco Lopez-Sancho Abraham
This article jumps into the basics of how “asking” in Akka works.
From Akka in Action, Second Edition by Francisco Lopez-Sancho Abraham
This article discusses messaging in Akka and its new typed actors.
From Spring Boot in Practice by Somnath Musib This article explores Rsocket and how it interacts with Spring Boot. Take 35% off Spring Boot in Practice by entering fccmusib into the discount code box at checkout at manning.com. In this… Continue Reading →
From The Well-Grounded Java Developer by Benjamin Evans, Jason Clark, and Martijn Verburg
The JDK ships with a compiler to turn Java source code into class files. Despite that fact, few projects of any size rely just on javac. Build tools are the norm for a number of reasons:
Automating tedious operations
Managing dependencies
Ensuring consistency between developers
Although many options exist, two choices dominate the landscape today: Maven and Gradle. Understanding what these tools aim to solve, digging below the surface of how they get their job done, and understanding the differences between them – and how to extend them – will pay off for the well-grounded developer.
From Spring Start Here by Laurențiu Spilcă
This article covers
Using the Spring web scopes
Implementing a simple login functionality for a web app
Redirecting from one page to another in a web app
From The Well-Grounded Java Developer, Second Edition by Benjamin Evans, Jason Clark, and Martijn Verburg
This article discusses classloaders and reflection in Java.
From Spring Start Here by Laurențiu Spilcă
This article covers
Using the Spring web scopes
Implementing a simple login functionality for a web app
Redirecting from one page to another in a web app
After reading this article, you will be able to:
– Differentiate between pure and impure functions
– Provide code examples in which impure functions cause unpredicted code behavior.