我有一个包含 CREATE TABLE 命令的 sql /ddl 脚本。
我使用hibernate,我希望hibernate执行这个脚本来创建数据库结构。
这该怎么做?
如果您使用 Spring,您可以使用其 JDBC 实用程序填充数据库:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<jdbc:embedded-database id="dataSource" type="H2" />
<bean class="org.springframework.jdbc.datasource.init.DataSourceInitializer" depends-on="sessionFactory">
<property name="databasePopulator" ref="resourceDatabasePopulator" />
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="resourceDatabasePopulator" class="org.springframework.jdbc.datasource.init.ResourceDatabasePopulator">
<property name="scripts">
<array>
<value>classpath*:init-hibernate.sql</value>
</array>
</property>
</bean>
</beans>