排序
Why Do We Still Need Jackson or Gson in Java?
Why Do We Still Need Jackson or Gson in Java?,Alright, let’s talk about something that’s been bugging me for ages: JSON handling in Java. Why do we still need libraries like Jack...
After retrieving JSON from ES Kafka Mongodb Restful…
After retrieving JSON from ES Kafka Mongodb Restful...,JSON is a good thing that can carry rich structured data information in a common text format. Many modern technologies prefer...
SpringBoot – Contextualizing serialization
SpringBoot - Contextualizing serialization,Every time I developed an API, I faced the same problem: how to filter the data according to my API calls. Indeed, some calls that are av...
Introduce Josson & Jossons
Introduce Josson & Jossons,https://github.com/octomix/josson Josson & Jossons Josson is a query language for JSON. Jossons is a template engine to generate text output. Feature...
Java JSON deserialization problems with the Jackson ObjectMapper
Java JSON deserialization problems with the Jackson ObjectMapper,In a previous blog post, we took a look at Java's custom serialization platform and what the security implications ...
How to find value using path array on structural document in Java
How to find value using path array on structural document in Java,Sometimes we need to find a value on structural document like JSON, YAML. Also there is sometime to need to find a...
ObjectMapper: Conversion to generic types.
ObjectMapper: Conversion to generic types.,Hey folks! I decided to write this post because I needed to do a conversion using generic classes. It's quite simple, but I believe that ...
Jackson and Gson – A Handshake 🤝
Jackson and Gson - A Handshake 🤝, Introduction Jackson and Gson are two of the most popular Java Libraries used for JSON Parsing and API response Serialisation/De-serialisation wh...
How To Parse JSON In Java?
How To Parse JSON In Java?,In this article we will see, how to parse JSON in java. We will be using the JSON Libraries like JSON-java, GSON and json-simple JSON stands for JavaScri...
Process large json with limited memory
Process large json with limited memory,Sometimes, we need to process big json file or stream but we don't need to store all contents in memory. For example, when we count the numbe...
Jackson, JSON and the Proper Handling of Unknown Fields in APIs
Jackson, JSON and the Proper Handling of Unknown Fields in APIs,Imagine the following scenario: You have an application that integrates with another through the consumption of REST...
YYYY vs yyyy – The day the Java Date Formatter hurt my brain
YYYY vs yyyy - The day the Java Date Formatter hurt my brain, Intro Dates in programming are hard. The ISO-8601 Date standard made them easier but to be entirely honest I'm not ISO...