ChungBeom Cho
ChungBeom Cho
@JooHyukKim First of all, thank you for the quick response I believe NON_FINAL excludes Records because they are final classes that don't support polymorphism, assuming that @class type information wouldn't...
Thank you for the quick response. Based on what you've explained, I understand that @class type was designed for leveraging polymorphism when using ObjectMapper. Example: ```java Animal animal = new...
@cowtowncoder Thanks for the helpful explanation above. Using a wrapper object or manually adding @JsonTypeInfo annotations — as you suggested — make a lot of sense and are solid approaches....