Upgrade Spring Integration to M5 (actually CI-SNAPSHOT).
This commit is contained in:
@@ -28,6 +28,6 @@
|
||||
</beans:property>
|
||||
</beans:bean>
|
||||
|
||||
<handler-endpoint input-channel="requests" output-channel="replies" handler="chunkHandler" method="handleChunk" />
|
||||
<service-activator input-channel="requests" output-channel="replies" ref="chunkHandler" method="handleChunk" />
|
||||
|
||||
</beans:beans>
|
||||
@@ -42,6 +42,6 @@
|
||||
</property>
|
||||
<property name="jobRepository" ref="jobRepository" />
|
||||
</bean>
|
||||
<integration:handler-endpoint handler="step" method="handle" input-channel="requests"
|
||||
<integration:service-activator ref="step" method="handle" input-channel="requests"
|
||||
output-channel="replies" />
|
||||
</beans>
|
||||
@@ -22,10 +22,8 @@
|
||||
|
||||
<bean id="channelFactory" class="org.springframework.integration.dispatcher.DirectChannelFactory" />
|
||||
|
||||
<integration:handler-endpoint input-channel="requests" handler="jobLaunchingHandler" method="launch"
|
||||
output-channel="null" return-address-overrides="true" />
|
||||
<integration:handler-endpoint input-channel="none" output-channel="jobs" handler="jobRequestConverter"
|
||||
method="convert" />
|
||||
<integration:service-activator input-channel="requests" ref="jobLaunchingHandler" return-address-overrides="true" />
|
||||
<integration:service-activator input-channel="none" output-channel="jobs" ref="jobRequestConverter" />
|
||||
|
||||
<bean id="jobRequestConverter" class="org.springframework.batch.integration.launch.JobRequestConverter" />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user