Uses of Interface
org.springframework.data.redis.serializer.Jackson3ObjectWriter
Packages that use Jackson3ObjectWriter
Package
Description
Serialization/Deserialization package for converting Object to (and from) binary data.
-
Uses of Jackson3ObjectWriter in org.springframework.data.redis.serializer
Methods in org.springframework.data.redis.serializer that return Jackson3ObjectWriterModifier and TypeMethodDescriptionstatic Jackson3ObjectWriterJackson3ObjectWriter.create()Create a defaultJackson3ObjectWriterdelegating toObjectMapper.writeValueAsBytes(Object).Methods in org.springframework.data.redis.serializer with parameters of type Jackson3ObjectWriterModifier and TypeMethodDescriptionGenericJackson3JsonRedisSerializer.GenericJackson3JsonRedisSerializerBuilder.writer(Jackson3ObjectWriter writer) Configures theJackson3ObjectWriter.Constructors in org.springframework.data.redis.serializer with parameters of type Jackson3ObjectWriterModifierConstructorDescriptionprotectedGenericJackson3JsonRedisSerializer(tools.jackson.databind.ObjectMapper mapper, Jackson3ObjectReader reader, Jackson3ObjectWriter writer) Create aGenericJackson3JsonRedisSerializerwith a custom-configuredObjectMapperconsidering potential Object/-readerand-writer.Jackson3JsonRedisSerializer(tools.jackson.databind.ObjectMapper mapper, tools.jackson.databind.JavaType javaType, Jackson3ObjectReader reader, Jackson3ObjectWriter writer) Creates a newJackson3JsonRedisSerializerfor the given targetJavaType.