[jackson-user] Can I ask Jackson for a fully refined deserializable type?

2019-06-08 Thread Bojan Tomic
Let's say I have a generic interface Inter, configured via @JsonDeserialize(as = Impl.class) to always deserialize as Impl. Can I somehow ask Jackson to fully refine the a type into its deserializable version, so that for e.g. Inter> I get Impl>? I'm aware of the following methods that get me

Re: [jackson-user] Can I ask Jackson for a fully refined deserializable type?

2019-06-12 Thread Tatu Saloranta
On Sat, Jun 8, 2019 at 5:42 AM Bojan Tomic wrote: > > Let's say I have a generic interface Inter, configured via > @JsonDeserialize(as = Impl.class) to always deserialize as Impl. > Can I somehow ask Jackson to fully refine the a type into its deserializable > version, so that for e.g. Inter> I