|
The issue is in method AttributeConverterDefinition.extractAttributeConverterParameterizedType(Class attributeConverterClass)
The use of
attributeConverterClass.getGenericInterfaces()
returns, as per doc: Returns the Types representing the interfaces *directly* implemented by the class or interface represented by this object.
So if the parent class implements the interface, this code won't find it.
|