I have an abstract base class which has over 100 implementations. It's too tedious to add @JsonCreator to all the classes.
Is there a way to do this programmatically? The parent class has a two-argument constructor.
abstract BaseClass {
BaseClass(A a, B b) {
}
}