I am using Redis as my database with Spring data, with no custom value or hash value serializer. I assume the standrad JdkSerializationRedisSerializer should be used then for objects serialization. It looks like transient fields of some objects are serialized to the database.
Transient field modifier, transient method annotations, @JsonIgnore properties - all of them don't seem to affect the serialization of the field.
How can I overcome this issue?