Closed ruromero closed 5 years ago
Maybe i need to support AttributeConverter like functionality as described here for JPA: https://www.thoughts-on-java.org/persist-localdate-localdatetime-jpa/
I wish i had to time to implement this, If someone can implement this i will be glad to review and include it
Hi,
Could this issue be solved with jackson-modules-java8?
ObjectMapper mapper = new ObjectMapper()
.registerModule(new ParameterNamesModule())
.registerModule(new Jdk8Module())
.registerModule(new JavaTimeModule()); // new module, NOT JSR310Module
Hi,
Is there any way to persist
java.time.LocalDateTime
? I understand that the problem lays in the lack of a default constructor during thedeepCopy
phase.Thanks