Skip to content
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

Closed
ashraf-revo opened this issue May 13, 2022 · 4 comments
Assignees
Labels
type: enhancement A general enhancement

Comments

@ashraf-revo
Copy link

ashraf-revo commented May 13, 2022

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 server
for example

public class User {
    @JsonView(Views.Basic.class)
    public int id;
    @JsonView(Views.Basic.class)
    public String name;
    @JsonView(Views.Detailed.class)
    public String email;
    @JsonView(Views.Detailed.class)
    public String mobile;
}


public class Views {
    public static class Basic {
    }
    public static class Detailed {
    }
    public static class ViewBasic extends Basic{
    }
    public static class ViewDetailed extends ViewBasic , Detailed {
    }
}

so if we want to cache only id,name we only pass ViewBasic to the WriterView

for example

objectMapper.writerWithView(Views.ViewBasic.class).writeValueAsBytes(user)

if we need basic+email,mobile we should pass ViewDetailed to the WriterView

easy fix

we could override GenericJackson2JsonRedisSerializer.serialize
with this code

    @Override
    public byte[] serialize(Object source) throws SerializationException {
        if (source == null) {
            return EMPTY_ARRAY;
        }
        try {
            if (source instanceof CacheView) {
                CacheView cacheView = (CacheView) source;
                return cachingObjectMapper.writerWithView(cacheView.getCacheView()).writeValueAsBytes(source);
            } else {
                return cachingObjectMapper.writeValueAsBytes(source);
            }
        } catch (JsonProcessingException e) {
            throw new SerializationException("Could not write JSON: " + e.getMessage(), e);
        }
    }

    import com.fasterxml.jackson.annotation.JsonIgnore;

    public interface CacheView {
        @JsonIgnore
        Class<?> getCacheView();
    }

public class User implements Serializable, CacheView{
    @JsonView(Views.Basic.class)
    public int id;
    @JsonView(Views.Basic.class)
    public String name;
    @JsonView(Views.Detailed.class)
    public String email;
    @JsonView(Views.Detailed.class)
    public String mobile;

    private Class<?> cacheView;

}
@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label May 13, 2022
@mp911de mp911de added the for: team-attention An issue we need to discuss as a team to make progress label May 16, 2022
@mp911de
Copy link
Member

mp911de commented May 16, 2022

Right now, the contextual scope is a bit unclear. ObjectWriter instances can be obtained through various means. An approach could be providing reading- and writing functions (something along the lines of BiFunction<Object, ObjectMapper, byte[]>).

For the time being, subclassing and implementing the detail in a subclass would be the best workaround.

@ashraf-revo
Copy link
Author

hi @mp911de thanks for you response
the problem not with passing ObjectWriter its about passing writerWithView value that will differ every time to control which property serialize to the cache server

@mp911de mp911de added type: enhancement A general enhancement and removed status: waiting-for-triage An issue we've not yet triaged for: team-attention An issue we need to discuss as a team to make progress labels May 24, 2022
@mp911de mp911de changed the title provide dynamic WriterView for GenericJackson2JsonRedisSerializer Provide read/write customization hooks for GenericJackson2JsonRedisSerializer Jun 3, 2022
@mp911de
Copy link
Member

mp911de commented Jun 3, 2022

Related ticket: FasterXML/jackson-databind#3506 to enable ObjectMapper reuse.

@mp911de mp911de added this to the 3.0 M5 (2022.0.0) milestone Jun 3, 2022
@ashraf-revo
Copy link
Author

hi @mp911de thank you for this big effort in implementing this task
i think we not need the read customization we care alot about the write customization because the data already written to the cache server with the write customization and the GenericJackson2JsonRedisSerializer will fetch all the data from the cache server that already written with write customization
we care about the the write customization because we can have control on which property should be written to the server , fix jackson infinite recursion (stackoverflowerror) , only cache data that not having security issue

artembilan added a commit to spring-projects/spring-integration that referenced this issue Sep 1, 2022
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: enhancement A general enhancement
Projects
None yet
3 participants