Created
January 13, 2020 01:56
-
-
Save bcalmac/7765c8a7a1ccc8ae608ce604889a42ef to your computer and use it in GitHub Desktop.
Test LocalDate JSON serialization / deserialization with Jackson
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.github.bcalmac.scratch; | |
import com.fasterxml.jackson.annotation.JsonFormat; | |
import com.fasterxml.jackson.core.JsonProcessingException; | |
import com.fasterxml.jackson.databind.ObjectMapper; | |
import com.fasterxml.jackson.databind.SerializationFeature; | |
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; | |
import lombok.Data; | |
import org.junit.jupiter.api.Test; | |
import java.time.LocalDate; | |
import static org.junit.jupiter.api.Assertions.assertEquals; | |
public class LocalDateJacksonSerializationTest { | |
@Data | |
static class TestBean { | |
// Accept default ISO-8601 format | |
LocalDate birthDate; | |
// Use custom format | |
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "dd/MM/yyyy") | |
LocalDate birthDateWithCustomFormat; | |
} | |
@Test | |
void serializeDeserializeTest() throws JsonProcessingException { | |
ObjectMapper objectMapper = new ObjectMapper(); | |
// Register module that knows how to serialize java.time objects | |
objectMapper.registerModule(new JavaTimeModule()); | |
// Ask Jackson to serialize dates as String (ISO-8601 by default) | |
objectMapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS); | |
// The JSON string after serialization | |
String json = "{\"birthDate\":\"2000-01-02\",\"birthDateWithCustomFormat\":\"03/02/2001\"}"; | |
// The object after deserialization | |
TestBean object = new TestBean(); | |
object.setBirthDate(LocalDate.of(2000, 1, 2)); | |
object.setBirthDateWithCustomFormat(LocalDate.of(2001, 2, 3)); | |
// Assert serialization | |
assertEquals(json, objectMapper.writeValueAsString(object)); | |
// Assert deserialization | |
assertEquals(object, objectMapper.readValue(json, TestBean.class)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Used in https://stackoverflow.com/questions/28802544/java-8-localdate-jackson-format/59709552#59709552