Memformatkan LocalDate Java 8 dengan Jackson
Pemformatan berasaskan anotasi Jackson untuk java.util.Date dilanjutkan dengan lancar ke medan LocalDate dalam Java 8. Untuk mencapai matlamat ini, elakkan menggunakan anotasi dan sebaliknya gunakan Jackson's ContextResolver bersama-sama dengan the JavaTimeModule.
ContextResolver:
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule; import javax.ws.rs.ext.ContextResolver; import javax.ws.rs.ext.Provider; @Provider public class ObjectMapperContextResolver implements ContextResolver<ObjectMapper> { private final ObjectMapper MAPPER; public ObjectMapperContextResolver() { MAPPER = new ObjectMapper(); MAPPER.registerModule(new JavaTimeModule()); MAPPER.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false); } @Override public ObjectMapper getContext(Class<?> type) { return MAPPER; } }
Kelas Sumber:
import java.time.LocalDate; @Path("person") public class LocalDateResource { @GET @Produces(MediaType.APPLICATION_JSON) public Response getPerson() { Person person = new Person(); person.birthDate = LocalDate.now(); return Response.ok(person).build(); } @POST @Consumes(MediaType.APPLICATION_JSON) public Response createPerson(Person person) { return Response.ok( DateTimeFormatter.ISO_DATE.format(person.birthDate)).build(); } public static class Person { public LocalDate birthDate; } }
Ujian:
Dengan menggunakan pendekatan ini, anda seharusnya dapat menyusun dan nyahserialisasi nilai LocalDate sebagai rentetan JSON menggunakan format ISO-8601.
Untuk maklumat lanjut, rujuk dokumentasi modul JSR310.
Nota:
Mulai Jackson versi 2.7, JSR310Module tidak digunakan lagi. Gunakan JavaTimeModule sebaliknya.
Atas ialah kandungan terperinci Bagaimanakah Saya Boleh Memformat LocalDate Java 8 dengan Jackson Tanpa Anotasi?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!