I need to reference two different converters for a given class.
@Converter may apparently only appear once on the class.
Furthermore, although it is placed at the TYPE level, it actually applies to the package (?!).
There is no @Converters annotation that would group individual @Converter instances.
Is it best practice to simply spray my two @Converter annotations over random classes in my package, since after all they really apply at the package, not the class, level?