Hello:
In a Roo 1.2.0.RELEASE [rev 39eb957] project, the WEB MVC creates an Application Conversion Service as explained in the reference manual http://static.springsource.org/sprin...ersion-service:
However, the parent's method is deprecated in Spring 3.1:Code:/** * A central place to register application converters and formatters. */ @RooConversionService public class ApplicationConversionServiceFactoryBean extends FormattingConversionServiceFactoryBean { @Override protected void installFormatters(FormatterRegistry registry) { super.installFormatters(registry); // Register application converters and formatters } }
Since Roo 1.2 uses Spring 3.1, I think it would be better to use the appropriate method.Code:@deprecated since Spring 3.1 in favor of {@link #setFormatterRegistrars(Set)}
Thanks.


Reply With Quote