You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I'm trying to serialize / deserialize external types that are interfaces from a Micronaut Controller. Typically in this case I would have a custom Jackson module and do something like:
Issue description
Hi I'm trying to serialize / deserialize external types that are interfaces from a Micronaut Controller. Typically in this case I would have a custom Jackson module and do something like:
coreModule.addAbstractTypeMapping(Execution.class, ExecutionImpl.class);
objectMapper.registerModule(coreModule);
And Execution would end up being the propagated type to injected sub-components.
Is there any way to achieve this with Serde?
Tried some combinations of @SerdeImport & @Serdeable.Deserializable, but I can't find a way to preserve decoupling.
The text was updated successfully, but these errors were encountered: