Top "Fasterxml" questions

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

Json (fasterxml) stackoverflow exception

When trying to serialize a Category I get a stackoverflow. Exception Warning: StandardWrapperValve[dispatcher]: Servlet.service() for servlet dispatcher threw …

java json spring data-binding fasterxml
Cannot instantiate value of type java.util.LinkedHashMap from String value ('{'); no single-String constructor/factory method

I have the following 2 classes: @JsonIgnoreProperties(ignoreUnknown = true) public class ChangesJSON { @JsonProperty("changes") List<ChangeJSON> changes; @JsonProperty("more") …

java json jackson fasterxml
Create Java 8 Stream from ArrayNode

Is it possible to create stream from com.fasterxml.jackson.databind.node.ArrayNode? I tried: ArrayNode files = (ArrayNode) json.get("…

jackson java-8 java-stream fasterxml
no single-int-arg constructor/factory method

I have this code: final Person p = new Person(1L); final ObjectMapper mapper = JacksonUtil.INSTANCE.getMapper(); final TypeReference<HashMap&…

jackson fasterxml
FasterXML jackson-dataformat-xml serialization version and encoding not added to xml

Hi I am serializing java POJO object to xml using faster-xml(https://github.com/FasterXML/jackson-dataformat-xml/wiki ).When i do …

java xml fasterxml
How to deserialize XML with annotations using FasterXML

I have the following XML schema: <Courses semester="1"> <Course code="A231" credits="3">Intermediate A</Course&…

java xml jackson pojo fasterxml
Fasterxml ObjectMapper: Date parsing - Unexpected character ('-' (code 45))

Json: {name:"abc",TxnDateUTC:2015-09-07T21:11:19Z} Java Code: ObjectMapper objectMapper = new ObjectMapper(); objectMapper.configure(JsonParser.Feature.ALLOW_UNQUOTED_…

java json fasterxml
yaml parsing using com.fasterxml.jackson

I am trying to parse yaml files into models using jackson Model -- public class TestModel { private String name; public …

java parsing jackson yaml fasterxml
Issues finding com.fasterxml.jackson.core in Intellij Idea

I pulled down an old project (2 years old) and I am having trouble building the project I am getting the …

java maven fasterxml
fasterxml serialize using toString and deserialize using String constructor

I have a POJO which looks something like this: public class Thing { private final int x; private final int y; …

java json dictionary fasterxml