排序
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...
Power up your REST service with Batch API
Power up your REST service with Batch API,RESTful APIs is pretty common nowadays, as a clear and well-structured resource-oriented standard. But we often have to face the use case ...
Handling unknown JSON structures
Handling unknown JSON structures,JSON object mapping, marshalling, call it whatever you want, we have you covered with Gson or Jackson. Unless you don't care about structure and wa...
JsonBatch — Journey from zero to full-fledged Batch Engine — part 1
JsonBatch — Journey from zero to full-fledged Batch Engine — part 1,Recently, I have published JsonBatch — an Engine to run batch requests with JSON based REST APIs. Although it...
Moonwlker: JSON without annotation
Moonwlker: JSON without annotation,Jackson is a powerful library for processing JSON. It’s the default library used by the Spring Framework. It's very flexible and configurable. T...
Como fazer uma requisição GET de uma API REST em Java e transformar o JSON em um objeto
Como fazer uma requisição GET de uma API REST em Java e transformar o JSON em um objeto,Como realizar uma simples leitura de uma API REST que disponibiliza um JSON como resposta ...
Como ler um arquivo JSON no Java
Como ler um arquivo JSON no Java,Forma muito simples de se ler um arquivo JSON no Java e transformar em um objeto, muito útil para criar arquivos de configuração para seu sistem...
Manage metadata in JSON (for instance for visualizations)
Manage metadata in JSON (for instance for visualizations),Hi all, I just thought about how best to add metadata to for instance object keys in JSON. For instance as I'm engineering...
Looking for Open Source contributors (and users :-))
Looking for Open Source contributors (and users :-)),Hi, I'm engineering an evolutionary, temporal Open Source data store[1] which currently allows storing XML and JSON data native...
Deserialize json with Java parameterized constructor
Deserialize json with Java parameterized constructor,Hi Guys in my previous blog JSON deserialize generic types using Gson and Jackson I talked about how you can deserialize json i...