Jackson
-
Core Java
How to Convert Excel to JSON in Java
1. Introduction When Java applications deal with data interchange between different systems, it’s common to convert Excel to JSON. Apache…
Read More » -
Core Java
Jackson & Java 8 Date-Time: LocalDate Support Issues
In the realm of Java 8, a notable gap arises with the absence of native support for the java.time.LocalDate type…
Read More » -
Enterprise Java
Writing Big JSON Files With Jackson
Sometimes you need to export a lot of data to JSON to a file. Maybe it’s “export all data to…
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 » -
Enterprise Java
Bidirectional relationship with Jackson in REST web services in WildFly
This is an example for a Bidirectional relationship between Java entities in a REST web service with the Jackson API.…
Read More » -
Enterprise Java
Generating JSON Schema from XSD with JAXB and Jackson
In this post, I demonstrate one approach for generating JSON Schema from an XML Schema (XSD). While providing an overview…
Read More » -
Core Java
Custom Deserializer in Jackson and validation
tl;dr: it is important to add input validation to custom json deserializers in Jackson. In RHQ we make use of…
Read More » -
Enterprise Java
How to Use PropertyNamingStrategy in Jackson
Jackson api is used extensively to convert json to Object and Object to JSON.So if you have a json string…
Read More » -
Enterprise Java
Testing REST with multiple MIME types
1. Overview This article will focus on testing a RESTful Service with multiple Media Types/representations. This is the tenth of…
Read More »