Top "Jackson" questions

Jackson is a Java library for handling tasks like reading and writing (parsing / generating) and data binding to/from Java objects.

Jackson enum Serializing and DeSerializer

I'm using JAVA 1.6 and Jackson 1.9.9 I've got an enum public enum Event { FORGOT_PASSWORD("forgot password"); private final String value; …

java enums jackson jsonserializer
Configuring ObjectMapper in Spring

my goal is to configure the objectMapper in the way that it only serialises element which are annotated with @JsonProperty. …

java json spring jackson object-object-mapping
How do I use a custom Serializer with Jackson?

I have two Java classes that I want to serialize to JSON using Jackson: public class User { public final int …

java json serialization jackson
Java 8 LocalDate Jackson format

For java.util.Date when I do @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "dd/MM/yyyy") private Date dateOfBirth; then …

java json jackson jax-rs resteasy
Convert JSON String to Pretty Print JSON output using Jackson

This is the JSON string I have: {"attributes":[{"nm":"ACCOUNT","lv":[{"v":{"Id":null,"State":null},"vt":"java.util.Map","…

java json jackson pretty-print
No content to map due to end-of-input jackson parser

I am getting this response from the server {"status":"true","msg":"success"} I am trying to parse this json string …

java android json jackson
How to change a field name in JSON using Jackson

I'm using jackson to convert an object of mine to json. The object has 2 fields: @Entity public class City { @id …

java jquery hibernate jquery-ui jackson
Different names of JSON property during serialization and deserialization

Is it possible: to have one field in class, but different names for it during serialization/deserialization in Jackson library? …

java json jackson
Jackson how to transform JsonNode to ArrayNode without casting?

I am changing my JSON library from org.json to Jackson and I want to migrate the following code: JSONObject …

java arrays json jackson
Convert a Map<String, String> to a POJO

I've been looking at Jackson, but is seems I would have to convert the Map to JSON, and then the …

json dictionary jackson pojo