I have a Java class having 10 attributes, I want to convert this into 3 maps(Breaking it into 5,3,2 fields resepectively). I did some research and found that Jackson’s ObjectMapper can be used by doing something like this: This will be creating a single map for all the attributes in my POJO. What I want is have this POJO converted
Tag: pojo
Mapping to “” instead of null Jackson
I have a function that reads XML from a Kafka topic into String format, which I then want to convert to a JSON Object. Example XML: <![CDATA[]]&…
jsonschema and date type
I’m just getting started with jsonschema and an example under “Using jsonschema2pojo within your Java project (embedded)” in https://github.com/joelittlejohn/jsonschema2pojo/wiki/Getting-Started …