Deserialize class with @AutoValue annotation during getting from cache in SpringBoot application
I’ve created a value class with com.google.auto.value.AutoValue annotation: @AutoValue @JsonDeserialize(builder = AutoValue_Company.Builder.class) public abstract class Company { public static …