Google API Tutorials
Google Guava Cache Example using LoadingCache, CacheBuilder and CacheLoader
This page will walk through Google Guava cache example using LoadingCache, CacheBuilder and CacheLoader. Guava cache stores key and object like ConcurrentHashMap. Guava cache is thread safe.
Java Gson Serialization and Deserialization with JSON
In this page, we will learn Serialization and Deserialization between JSON and Java Object for special cases where Gson cannot simply understand class type of format of field.
Java Gson + JSON Tutorial with Examples
Gson is google API that effectively coverts JSON into corresponding java object and java object into JSON string. Gson provides options to print JSON in well-defined way.