我一直在尝试通过hibernate4-maven-plugin生成PostgreSQL模式,这种模式的创建方式与我为MySQL所做的相同,但是没有找到任何资源。
这是maven插件设置的MySQL
版本:
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate4-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<goals>
<goal>export</goal>
</goals>
</execution>
</executions>
<configuration>
<driverClassName>com.mysql.jdbc.Driver</driverClassName>
<hibernateDialect>org.hibernate.dialect.MySQL5Dialect</hibernateDialect>
<username>testuser</username>
<password>testpasswd</password>
<url>jdbc:mysql://localhost:3306/mydb</url>
<target>BOTH</target>
</configuration>
</plugin>
答案 0 :(得分:5)
经过一些抽搐参数后,我得到它与PostgreSQL
一起使用。
以下是对我来说就像魅力一样的maven设置:
<plugin>
<groupId>de.juplo</groupId>
<artifactId>hibernate4-maven-plugin</artifactId>
<version>1.0.3</version>
<executions>
<execution>
<goals>
<goal>export</goal>
</goals>
</execution>
</executions>
<configuration>
<driverClassName>org.postgresql.Driver</driverClassName>
<hibernateDialect>org.hibernate.dialect.PostgresPlusDialect</hibernateDialect>
<username>postgres</username>
<password>postgres</password>
<url>jdbc:postgresql://localhost:5432/mydb</url>
<target>BOTH</target>
</configuration>
<dependencies>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.1-901.jdbc4</version>
</dependency>
</dependencies>
</plugin>