spring-dal-data-loader.xml
1.17 KB
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
">
<!-- ======================================================================== -->
<!-- 初始化表结构,装入范例数据。 -->
<!-- ======================================================================== -->
<bean id="dataLoader" class="com.taobao.sample.petstore.dal.util.DataLoader">
<property name="autoLoad" value="true" />
<property name="autoDrop" value="false" />
<property name="dataSource" ref="dataSource" />
<property name="sqlSchemaDrop" value="classpath:META-INF/sql/petstore-hsqldb-schema-drop.sql" />
<property name="sqlSchema" value="classpath:META-INF/sql/petstore-hsqldb-schema.sql" />
<property name="sqlDataLoad" value="classpath:META-INF/sql/petstore-hsqldb-dataload.sql" />
</bean>
</beans>