Top "Fasterxml" questions

FasterXML is an open source XML and JSON parsing for the Java platform

Could not read JSON: Can not deserialize instance of hello.Country[] out of START_OBJECT token

I have rest url that gives me all countries - http://api.geonames.org/countryInfoJSON?username=volodiaL. I use RestTemplate …

java spring resttemplate fasterxml
Generate JSON schema from Java class

I have a POJO class: public class Stock { int id; String name; Date date; } Are there any annotations or development …

json jackson jsonschema fasterxml jackson-modules
JSON Serializing date in a custom format (Can not construct instance of java.util.Date from String value)

could not read JSON: Can not construct instance of java.util.Date from String value '2012-07-21 12:11:12': not …

json spring-mvc jackson fasterxml
java.lang.ClassNotFoundException / NoClassDefFoundError for com/fasterxml/jackson/databind/ObjectMapper with Maven

I get the following error when trying to run a java program that uses jackon's ObjectMapper class: Exception in thread "…

java maven classpath fasterxml
How can I Serialize/De-serialize a Boolean Value from FasterXML\Jackson as an Int?

I'm writing a JSON Client for a Server that returns Boolean values as "0" and "1". When I try to run my …

java json spring jackson fasterxml
Case insensitive JSON to POJO mapping without changing the POJO

Does anyone know how com.fasterxml.jackson.databind.ObjectMapper is able to map JSON properties to POJO properties case insensitive? …

java json data-binding case-insensitive fasterxml
Cannot deserialize instance of `java.lang.String` out of START_OBJECT token

I am getting the below error message, can someone please help or suggest how best to debug this. Cannot deserialize …

java spring-boot fasterxml
Spring 4.2.3 and fasterxml Jackson 2.7.0 are incompatible

After migration from fasterxml.jackson 2.6.3 to 2.7.0. This is because public JavaType constructType(Type type, Class<?> contextType) method used …

spring jackson fasterxml
NoClassDefFoundError of com/fasterxml/jackson/databind/ObjectMapper with Maven

This is a similar question as the one here, which is unfortunately unresolved yet. If you want to debug the …

java maven jackson fasterxml
Jackson Converting String to Object

Link.java @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "rel", "href","method" }) public class Link { @JsonProperty("rel") private String rel; @JsonProperty("…

java json spring-boot jackson fasterxml