-
Type:
Bug
-
Status: Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.1.3.RELEASE
-
Fix Version/s: 1.1.4.RELEASE
-
Component/s: WEB MVC
-
Labels:None
After issuing
web flow
there is the following configuration in webflow-config.xml:
<!-- Places the ConversionService in request scope so it's available during request processing -->
<bean id="conversionServiceExposingInterceptor" class="org.springframework.web.servlet.handler.ConversionServiceExposingInterceptor">
<constructor-arg ref="applicationConversionService" />
</bean>
This does not work. I added
<bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean" />
to webmvc-config.xml and change the config above to
<bean id="conversionServiceExposingInterceptor" class="org.springframework.web.servlet.handler.ConversionServiceExposingInterceptor">
<constructor-arg ref="conversionService" />
</bean>
<mvc:annotation-driven /> registers a ConversionService but I am not sure about the bean name.
- is related to
-
ROO-2275 WebFlow Addon: Configure ConversionServiceExposingInterceptor on FlowHandlerMapping by default
-
- Resolved
-