Hypermedia as the Engine of Application State means the server returns not just data but hyperlinks that reveal what the client can do next.
Java Miscellaneous Tips
Brief and Easy Explanation of Virtual Threads
Use virtual threads to run 1 million concurrent tasks with plain blocking code, no thread pools, just simple scalability.
SOLID Principles Through Java Code Examples
In this article, we will discuss SOLID Principles. We will use Java examples to clearly explain each of them.
How to Create a Deep or a Shallow Copy in Java
In this article, we will discuss the differences between a deep copy and and shallow copy of an object in Java, and their implications.
Java Map: How to Get Sorted Keys
The LinkedHashMap class implements the Map interface and preserves the order in which the keys are inserted into it.
Java Double: Parse String with Comma
Parsing strings into Double values can be tricky sometimes. We show in this post some common scenarios and how to deal with them.

