Class Jackson2JsonRedisSerializer<T>
- All Implemented Interfaces:
RedisSerializer<T>
RedisSerializer
that can read and write JSON using
Jackson's and
Jackson Databind ObjectMapper
.
This converter can be used to bind to typed beans, or untyped HashMap
instances.
Note:Null objects are serialized as empty arrays and vice versa.
- Since:
- 1.2
- Author:
- Thomas Darimont
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionJackson2JsonRedisSerializer
(com.fasterxml.jackson.databind.JavaType javaType) Creates a newJackson2JsonRedisSerializer
for the given targetJavaType
.Jackson2JsonRedisSerializer
(Class<T> type) Creates a newJackson2JsonRedisSerializer
for the given targetClass
. -
Method Summary
Modifier and TypeMethodDescriptiondeserialize
(byte[] bytes) Deserialize an object from the given binary data.protected com.fasterxml.jackson.databind.JavaType
getJavaType
(Class<?> clazz) Returns the JacksonJavaType
for the specific class.byte[]
Serialize the given object to binary data.void
setObjectMapper
(com.fasterxml.jackson.databind.ObjectMapper objectMapper) Sets theObjectMapper
for this view.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.data.redis.serializer.RedisSerializer
canSerialize, getTargetType
-
Field Details
-
DEFAULT_CHARSET
-
-
Constructor Details
-
Jackson2JsonRedisSerializer
Creates a newJackson2JsonRedisSerializer
for the given targetClass
.- Parameters:
type
-
-
Jackson2JsonRedisSerializer
public Jackson2JsonRedisSerializer(com.fasterxml.jackson.databind.JavaType javaType) Creates a newJackson2JsonRedisSerializer
for the given targetJavaType
.- Parameters:
javaType
-
-
-
Method Details
-
deserialize
Description copied from interface:RedisSerializer
Deserialize an object from the given binary data.- Specified by:
deserialize
in interfaceRedisSerializer<T>
- Parameters:
bytes
- object binary representation. Can be null.- Returns:
- the equivalent object instance. Can be null.
- Throws:
SerializationException
-
serialize
Description copied from interface:RedisSerializer
Serialize the given object to binary data.- Specified by:
serialize
in interfaceRedisSerializer<T>
- Parameters:
t
- object to serialize. Can be null.- Returns:
- the equivalent binary data. Can be null.
- Throws:
SerializationException
-
setObjectMapper
public void setObjectMapper(com.fasterxml.jackson.databind.ObjectMapper objectMapper) Sets theObjectMapper
for this view. If not set, a defaultObjectMapper
is used.Setting a custom-configured
ObjectMapper
is one way to take further control of the JSON serialization process. For example, an extendedSerializerFactory
can be configured that provides custom serializers for specific types. The other option for refining the serialization process is to use Jackson's provided annotations on the types to be serialized, in which case a custom-configured ObjectMapper is unnecessary. -
getJavaType
Returns the JacksonJavaType
for the specific class.Default implementation returns
TypeFactory.constructType(java.lang.reflect.Type)
, but this can be overridden in subclasses, to allow for custom generic collection handling. For instance:protected JavaType getJavaType(Class<?> clazz) { if (List.class.isAssignableFrom(clazz)) { return TypeFactory.defaultInstance().constructCollectionType(ArrayList.class, MyBean.class); } else { return super.getJavaType(clazz); } }
- Parameters:
clazz
- the class to return the java type for- Returns:
- the java type
-