hibernate4-maven-plugin生成PostgreSQL模式的正确配置是什么?

时间:2014-05-06 13:12:48

标签: hibernate postgresql maven plugins schema

我一直在尝试通过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>

1 个答案:

答案 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>