Java
-
Java Exercises for Beginners
Many people who tried learning to program never become programmers. Why? Among all the reasons, one can single out the…
Read More » -
How to do test refactoring towards fluent assertion pattern?
What are Clean Tests? The Clean Code rules apply equally to the production code and the test code. So do…
Read More » -
Different ways to remove Spaces from String In Java
String manipulation is done most often while programming. Like removing spaces in or around the string text. This also known as…
Read More » -
Quick tip: ISO 8601 durations in Java
Many developers know about the interchange formats for dates and times defined by ISO 8601. (For example 2007-08-31T16:47+00:00 which represents…
Read More » -
Difference between JVM, JIR, JRE, and JDK in Java
JRE, JVM, and JDK are three terms you often heard in conjunction with Java programming language, and most people either…
Read More » -
What’s the difference between map() and flatMap() methods in Java 8?
A quick guide to learn what’s the difference between Stream.map() and Stream.flatMap() methods in Java 8. 1. Overview In this…
Read More » -
Integrating JSON Schema validation in Spring using a custom HandlerMethodArgumentResolver
In previous posts we learned about JSON Schema and how we can validate a JSON document against a JSON Schema…
Read More » -
REST: Managing One-To-Many relations
In a previous post we looked at many-to-many relations. This time we will see how to model one-to-many relations in…
Read More » -
JSON Schema validation in Java
In this post we will see how to validate a JSON document against a JSON Schema in Java. We will…
Read More »