I have upgraded from roo 1.1.0 to roo 1.1.1 and I am using Spring mvc and have moved all my custom converters from the individual controllers to ApplicationConversionServiceFactoryBean. The custom converters were picked up in detail views but those remaining in the ApplicationConversionServiceFactoryBean_Roo_Conver sionService (default converters) were not being found and an unknown converter exception was thrown when any of these default converters were required.

By removing all the custom converters from ApplicationConversionServiceFactoryBean and letting the default converters be created in ApplicationConversionServiceFactoryBean_Roo_Conver sionService every thing works fine or by moving all converters including the default converters to ApplicationConversionServiceFactoryBean.

Having some converters in ApplicationConversionServiceFactoryBean and some in ApplicationConversionServiceFactoryBean_Roo_Conver sionService causes the ones in ApplicationConversionServiceFactoryBean_Roo_Conver sionService not to be found.

Is this a bug or has anyone else seen such behaviour?

As mentioned there is a solution to this but maybe it is not the desired one.

Thanks in advance for any response.