You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With latest Spring Data 1.8 (Fowler) release, Spring Data provides convenient JDK8 data converters via org.springframework.data.jpa.convert.threeten.Jsr310JpaConverters.
To apply these automatically I have to to add the following to a configuration class:
It would be very nice if Spring Boot could add these Jsr310JpaConverters.class automatically to the entity scan process. Just like it would add the Application.class automatically if I would not provide the @EntityScan annotation.
Of course this should only be done if applicable; e.g. using JDK8 and Spring Data JPA.