Java Static Analysis Tools in Eclipse and IntelliJ IDEA 1. Overview In our introduction to FindBugs, we looked at the functionality of FindBugs as a static analysis tool and how it can be directly integrated into IDEs like Eclipse and IntelliJ Idea. In this article, we’re going look into few… Continue Reading java-static-analysis-tools

Jackson – Decide What Fields Get Serialized/Deserialized 1. Overview In this article we’ll explore the various ways we can control if a field is serialized / deserialized by Jackson or not. 2. A Public Field The simplest way to make sure a field is both serializable and deserializable is to… Continue Reading jackson-field-serializable-deserializable-or-not

Java Null-Safe Streams from Collections Java Java Collections Java Streams 1. Overview In this tutorial, we’ll see how to create null-safe streams from Java collections. To start with, some familiarity with Java 8’s Method References, Lambda Expressions, Optional and Stream API is required to fully understand this material. If you are… Continue Reading java-null-safe-streams-from-collections