-
Currently I’am facing problem when trying to parse a xml document to a Java Object. The only necessary information which …
- 437 views
- 1 answers
- 0 votes
-
I have a response from a RESTful XML webservice, stored as a string. String responseAsStr = response.readEntity(String.class); Im trying to …
- 504 views
- 0 answers
- 0 votes
-
I try to parse XML like this: fun main() { val kotlinXmlMapper = XmlMapper(JacksonXmlModule().apply { setDefaultUseWrapper(false) }).registerKotlinModule() .configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true) .configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, …
- 395 views
- 1 answers
- 0 votes
-
I’m have a lib’s enum look like this: enum class VatRate { none, tax10, tax20 } I can’t modify this …
- 407 views
- 1 answers
- 0 votes
-
I have a POJO which I’d like to extend with a custom property with Jackson. I am using 2.11.1 from …
- 367 views
- 0 answers
- 0 votes
-
I see some common parts in XML I want to parse and want to reflect it with kind of inheritance …
- 373 views
- 0 answers
- 0 votes
-
I’m currently working on a project that deals with elements that (for legacy reasons) must have a tag name that …
- 375 views
- 2 answers
- 0 votes
-
I have followed this in order to keep Jackson from returning infinite depth when serializing to JSON certain nested objects: …
- 384 views
- 0 answers
- 0 votes
-
Normally one does something like this when you want to serialize an object to a JSON string: String json = …
- 365 views
- 1 answers
- 0 votes
-
I have a scenario where I need to deserialise a JSON array to a list of strings. My class is: …
- 391 views
- 0 answers
- 0 votes