使用Springs嵌入式数据库支持
<jdbc:embedded-database id="dataSource"> <jdbc:script location="classpath:myscript.sql"/> <jdbc:script location="classpath:otherscript.sql"/></jdbc:embedded-database>
或Springs初始化数据库支持
<jdbc:initialize-database data-source="dataSource"> <jdbc:script location="classpath:myscript.sql"/> <jdbc:script location="classpath:otherscript.sql"/></jdbc:initialize-database>
@请参阅http://static.springsource.org/spring/docs/3.0.x/spring-framework-
reference/html/jdbc.html#jdbc-embedded-database-
support



