我有一个正在为学校工作的项目,该项目使用hibernate来实现jpa。我的问题是,如果在休眠属性文件中我关闭了模式生成,并且我想手动更新模式(我的 ddl 文件)并将我的模式与应用程序一起部署,我需要在我的<build></build>
标签中包含什么将架构作为部署内容的一部分?
在 src/main/resources 我有一个 ddl 目录,其中包含表创建脚本。
我有一个正在为学校工作的项目,该项目使用hibernate来实现jpa。我的问题是,如果在休眠属性文件中我关闭了模式生成,并且我想手动更新模式(我的 ddl 文件)并将我的模式与应用程序一起部署,我需要在我的<build></build>
标签中包含什么将架构作为部署内容的一部分?
在 src/main/resources 我有一个 ddl 目录,其中包含表创建脚本。
您将需要使用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>
根据您的数据库更改配置