Java
-
Java Stream mapMulti() Example
With the release of Java 16, several new features and enhancements were introduced. One such feature is the mapMulti() method…
Read More » -
How to write JSON to a file using Moshi
Moshi is a modern JSON library for Android and Java, providing a simple API for parsing and serializing JSON. Let…
Read More » -
Effective Debugging Techniques for Java Streams
Java Streams have revolutionized how we process collections in Java. Their concise and declarative syntax makes code cleaner and more…
Read More » -
How to pretty print JSON using Moshi
JSON (JavaScript Object Notation) is a lightweight data-interchange format that is easy for humans to read and write, and easy…
Read More » -
Get First and Last Day of Week, Month or Year in Java
The introduction of the Date and Time API in Java 8 brought a significant improvement to how dates and times…
Read More » -
Eclipse IDE for Modern Languages
The Eclipse IDE is a powerhouse for developers, but did you know it’s not just for Java anymore? While it…
Read More » -
How to Test a Spring AOP Aspect
1. Introduction Aspect-Oriented Programming (AOP) is one of programming paradigms that separates cross-cutting concerns as aspects. It complements Object-Oriented Programming…
Read More »