Gson supports Java 8 date time types
Gson does not directly support Java 8’s date-time APIs like LocalDate, LocalDateTime, and ZonedDateTime. However, we can create a custom JSON serializer to support Java 8 date-time types. This article shows how to use Gson to handle the LocalDate type. Table of contents: 1. Setup Google Gson 2. Default, Gson does not support Java 8 …