19 August 2019Combining the Jackson Streaming API with ObjectMapper for parsing JSONThis post demonstrates how to combine Jackson Streaming API and the data binding capabilities provided by ObjectMapper to parse JSON content. Read moreCombining the Jackson Streaming API with ObjectMapper for parsing JSON
10 June 2019Using HTTP PATCH in SpringThis post demonstrates an approach to support HTTP PATCH in Spring. Read moreUsing HTTP PATCH in Spring
23 July 2018Comparing JSON documents in JavaMy insights on comparing JSON documents in Java. Read moreComparing JSON documents in Java
21 November 2017Customizing ObjectMapper in a JAX-RS applicationUsing Jackson with JAX-RS? See how to define a ContextResolver for ObjectMapper to customize serialization and deserialization. Read moreCustomizing ObjectMapper in a JAX-RS application
23 August 2017Getting known JSON properties from a class using JacksonUsing the Jackson API to introspect a Java class and extract the available JSON properties from it. Read moreGetting known JSON properties from a class using Jackson
24 January 2017Deserializing JSON property as String with JacksonWriting a custom deserializer to read a JSON property as String with Jackson. Read moreDeserializing JSON property as String with Jackson
17 September 2016Converting POJO to Map and vice versa with JacksonJackson API makes it easy to covert Java objects to a map instance and vice versa. Read moreConverting POJO to Map and vice versa with Jackson
10 August 2016Using Jackson as JSON provider in Jersey 2.xUsing Jackson, a popular JSON parser for Java, in Jersey applications. Read moreUsing Jackson as JSON provider in Jersey 2.x
13 July 2016Using Jackson and JSON Pointer to query and parse an arbitrary JSON nodeExample of how to use JSON Path with Jackson. Read moreUsing Jackson and JSON Pointer to query and parse an arbitrary JSON node