Fix build after broken update

This commit is contained in:
David Syer
2010-05-07 09:09:41 +00:00
parent 07e339a0e7
commit 33379ce025
2 changed files with 6 additions and 17 deletions

View File

@@ -10,8 +10,12 @@
<si:queue />
</si:channel>
<si:poller default="true">
<si:interval-trigger interval="100" />
</si:poller>
<jdbc:embedded-database type="HSQL" id="dataSource">
<jdbc:script location="org/springframework/integration/jdbc/config/outboundSchema.sql" />
<jdbc:script location="org/springframework/integration/jdbc/config/inboundSchema.sql" />
</jdbc:embedded-database>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

View File

@@ -12,21 +12,6 @@
<inbound-channel-adapter query="select * from item where status=2"
channel="target" jdbc-operations="jdbcTemplate" />
<si:channel id="target">
<si:queue />
</si:channel>
<jdbc:embedded-database type="HSQL" id="dataSource">
<jdbc:script
location="org/springframework/integration/jdbc/config/inboundSchema.sql" />
</jdbc:embedded-database>
<beans:bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<beans:constructor-arg ref="dataSource" />
</beans:bean>
<si:poller default="true">
<si:interval-trigger interval="100" />
</si:poller>
<beans:import resource="jdbcInboundChannelAdapterCommonConfig.xml" />
</beans:beans>