-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide read/write customization hooks for GenericJackson2JsonRedisSerializer
#2322
Comments
Right now, the contextual scope is a bit unclear. For the time being, subclassing and implementing the detail in a subclass would be the best workaround. |
hi @mp911de thanks for you response |
GenericJackson2JsonRedisSerializer
Related ticket: FasterXML/jackson-databind#3506 to enable |
hi @mp911de thank you for this big effort in implementing this task |
The `GenericJackson2JsonRedisSerializer` now resolves the target type before calling `ObjectMapper.readValue()` causing a `ClassCast` in the `StdNodeBasedDeserializer.deserializeWithType()` * Override `MessageJacksonDeserializer.deserializeWithType()` with delegating to the plain `deserialize()` ignoring the `TypeDeserializer` Related to spring-projects/spring-data-redis#2322
ObjectMapper provide
writerWithView
method for controlling which property to be serialize this make us able to adjust and make sure which properties written to the cache serverfor example
so if we want to cache only
id,name
we only passViewBasic
to theWriterView
for example
if we need basic+
email,mobile
we should passViewDetailed
to theWriterView
easy fix
we could override
GenericJackson2JsonRedisSerializer.serialize
with this code
The text was updated successfully, but these errors were encountered: