Uses of Interface
org.springframework.data.redis.serializer.JacksonObjectWriter
Packages that use JacksonObjectWriter
Package
Description
Serialization/Deserialization package for converting Object to (and from) binary data.
-
Uses of JacksonObjectWriter in org.springframework.data.redis.serializer
Methods in org.springframework.data.redis.serializer that return JacksonObjectWriterModifier and TypeMethodDescriptionstatic JacksonObjectWriterJacksonObjectWriter.create()Create a defaultJacksonObjectWriterdelegating toObjectMapper.writeValueAsBytes(Object).Methods in org.springframework.data.redis.serializer with parameters of type JacksonObjectWriterModifier and TypeMethodDescriptionGenericJacksonJsonRedisSerializer.GenericJacksonJsonRedisSerializerBuilder.writer(JacksonObjectWriter writer) Configures theJacksonObjectWriter.Constructors in org.springframework.data.redis.serializer with parameters of type JacksonObjectWriterModifierConstructorDescriptionprotectedGenericJacksonJsonRedisSerializer(tools.jackson.databind.ObjectMapper mapper, JacksonObjectReader reader, JacksonObjectWriter writer) Create aGenericJacksonJsonRedisSerializerwith a custom-configuredObjectMapperconsidering potential Object/-readerand-writer.JacksonJsonRedisSerializer(tools.jackson.databind.ObjectMapper mapper, tools.jackson.databind.JavaType javaType, JacksonObjectReader reader, JacksonObjectWriter writer) Creates a newJacksonJsonRedisSerializerfor the given targetJavaType.