I searched for the below problem, but couldn\'t find an answer.
I want to use spring\'s conversion service by writing my custom converter that implements org.spri
You can also add it dinamically using addConverter method on your DefaultConversionService-ish class:
DefaultConversionService cs = new (); cs.addConverter(new MyConverter());