I am trying to use Dozer Java API to map two java classes using a custom converter. Is there a way I can configure class-level custom converters in Java? Right now I have to add the configuration in XML:
<configuration>
<custom-converters>
<converter type="com.abc.A2BConverter" >
<class-a>com.abc.ClassA</class-a>
<class-b>com.abc.ClassB</class-b>
</converter>
</custom-converters>
</configuration>`
Any help is appreciated!