16 lines
651 B
XML
16 lines
651 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
|
|
|
|
<bean id="dataSourceInitializer" class="test.jdbc.datasource.InitializingDataSourceFactoryBean" autowire-candidate="false">
|
|
<property name="dataSource" ref="dataSource"/>
|
|
<property name="initScripts">
|
|
<list>
|
|
<value>${batch.schema.script}</value>
|
|
<value>${batch.business.schema.script}</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
</beans> |