-
Enterprise Java
How to ignore unknown properties while parsing JSON in Java – Jackson @JsonIgnoreProperties Annotation Example
One of the common problem while parsing JSON in Java using Jackson API is that it fails when your JSON…
Read More » -
Core Java
How to deal with ConcurrentModificationException in Java? Beware while removing elements from ArrayList in loop
One of the common problem while removing elements from an ArrayList in Java is the ConcurrentModificationException. If you use classical…
Read More » -
Scala
10 reasons to Learn Scala Programming Language
One of the questions my reader often ask me is, shall I learn Scala? Does Scala has better future than…
Read More » -
Enterprise Java
How Http Basic Authentication works in Spring Security?
In the last article, you have learned how to enable Http basic authentication in Spring security based Java application and now…
Read More » -
Core Java
What is a Functional interface in Java 8? @Functional Annotation and Examples
The functional interface is one of the most important concepts of Java 8 which actually powers lambda expression but many…
Read More » -
Enterprise Java
How to enable HTTP Basic Authentication in Spring Security using Java and XML Config
In the last article, I have shown you how to enable Spring security in Java application and today we’ll talk about how…
Read More » -
Core Java
Top 20 Libraries and APIs Java Developer should know
One of the traits of a good and experienced Java developer is the extensive knowledge of API, including JDK and…
Read More » -
Enterprise Java
Difference between @Component, @Service, @Controller, and @Repository in Spring
Before you learn the difference between @Component, @Service, @Controller, and @Repository annotations in Spring framework, it’s important to understand the…
Read More » -
Enterprise Java
Jackson JSON Parsing Error – UnrecognizedPropertyException: Unrecognized field, not marked as ignorable [Solved]
While parsing JSON string received from one of our RESTful web services, I was getting this error “Exception in thread…
Read More »