There is nothing else that I know of, specifically, although you can
probably achieve this by sub-classing `JacksonAnnotationIntrospector`
(or implementing `AnnotationIntrospector`), and defining/overriding
method that looks for `@JsonTypeInfo`.
But I think the `activateDefaultTyping()` route would make most sense:
you would need to specific custom applicability, but otherwise.
Also note that the use of `As.PROPERTY` is discouraged for polymorphic
handling: for types that do not serialize as JSON Objects it must use
`As.WRAPPER_ARRAY` logic anyway. So it is usually better to use either
`As.WRAPPER_ARRAY` or `As.WRAPPER_OBJECT`.
Technically you can of course try `As.PROPERTY` and perhaps it works
for your case; this is just a warning that it may be problematic.
-+ Tatu +-