elimintated controller/handler adapter duplication

made spring beanish with default constructor
This commit is contained in:
Keith Donald
2008-04-23 16:05:32 +00:00
parent 36655659be
commit 492c9f2246
17 changed files with 345 additions and 422 deletions

View File

@@ -21,7 +21,7 @@
<!-- Handles requests mapped to the Spring Web Flow system -->
<bean id="flowController" class="org.springframework.webflow.mvc.servlet.FlowController">
<constructor-arg ref="flowExecutor" />
<property name="flowExecutor" ref="flowExecutor"/>
</bean>
<!-- Maps logical view names to Facelet templates (e.g. 'search' to '/WEB-INF/search.xhtml' -->

View File

@@ -57,7 +57,7 @@
<!-- Enables FlowHandlers -->
<bean class="org.springframework.webflow.mvc.servlet.FlowHandlerAdapter">
<constructor-arg ref="flowExecutor" />
<property name="flowExecutor" ref="flowExecutor"/>
</bean>
</beans>