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
It would be nice to register custom mapper for a type of field.
My case is having a jodatime LocalDate class in an entity, which I would like to be treated as java.util.Data.
From what i see I guess some strategy should be used in MappingUtil, so that I can do:
It would be nice to register custom mapper for a type of field.
My case is having a jodatime LocalDate class in an entity, which I would like to be treated as java.util.Data.
From what i see I guess some strategy should be used in MappingUtil, so that I can do:
MappingUtil.registerMapper(LocalDate.class,new LocalDateMapper());
the interface for mapper should probably include a conversion between string value and object.
The text was updated successfully, but these errors were encountered: