in ApplicationConversionServiceFactoryBean_Roo_Conver sionService
PHP Code:
public void ApplicationConversionServiceFactoryBean.afterPropertiesSet() {
super.afterPropertiesSet();
installLabelConverters(getObject());
}
registers the default converters in installLabelConverters(). You can push the converters in or if you already have your own versions, ROO will remove them from the aspect but still handles the registration.
If you have additional converters, register them like you did it.
PHP Code:
@Override
protected void installFormatters(FormatterRegistry registry) {
super.installFormatters(registry);
// Register application converters and formatters
registry.addConverter(getUserRoleConverter());
(...)
}