Interface ObjectMapperSource
-
- All Known Implementing Classes:
FallbackObjectMapperSource
@UsesOrderedConfiguration(ObjectMapperSource.class) public interface ObjectMapperSource
Service that provides
ObjectMapper
instances for specific mapped entity classes.It's defined as an ordered configuration of
ObjectMapperSource
instances. Calls toget(Class)
will call the same method in contributed instances until one returns a non-nullObjectMapper
instance.- Since:
- 5.8.0
- See Also:
ObjectMapper
,MappedEntityManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.fasterxml.jackson.databind.ObjectMapper
get(java.lang.Class<?> clasz)
Provides the ObjectMapper to be used for a given mapped entity class.
-
-
-
Method Detail
-
get
com.fasterxml.jackson.databind.ObjectMapper get(java.lang.Class<?> clasz)
Provides the ObjectMapper to be used for a given mapped entity class.
-
-