我正在为学校工作,正在使用hibernate进行jpa实现。我的问题是,如果在hibernate属性文件中我关闭了模式生成,并且我想手动更新模式(我的ddl文件)并使用应用程序部署我的模式,我需要在my {中包含什么{1}}标记将模式作为部署内容的一部分?
在src / main / resources下,我有一个包含表创建脚本的ddl目录。
答案 0 :(得分:1)
您需要使用sql-maven-plugin在构建过程中执行sql
类似
<build>
[...]
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
<version>1.5</version>
<dependencies>
<!-- specify the dependent jdbc driver here -->
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.1-407.jdbc3</version>
</dependency>
</dependencies>
<!-- common configuration shared by all executions -->
<configuration>
<driver>org.postgresql.Driver</driver>
<url>jdbc:postgressql://localhost:5432:yourdb</url>
<username>postgres</username>
<password>password</password>
<!-- You can comment out username/password configurations and
have maven to look them up in your settings.xml using ${settingsKey}
-->
<settingsKey>sensibleKey</settingsKey>
<!--all executions are ignored if -Dmaven.test.skip=true-->
<skip>${maven.test.skip}</skip>
</configuration>
<executions>
<execution>
<id>create-data</id>
<phase>process-test-resources</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<orderFile>ascending</orderFile>
<fileset>
<basedir>${basedir}</basedir>
<includes>
<include>src/test/sql/test-data2.sql</include>
</includes>
</fileset>
</configuration>
</execution>
</plugin>
[...]
</plugins>
[...]
</build>
根据您的数据库更改配置