gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 11:33:38 24 4
gpt4 key购买 nike

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

最佳答案

在稍微调整一下参数后,我让它也可以与 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>

关于hibernate - hibernate4-maven-plugin 生成 PostgreSQL 模式的正确配置是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23495730/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com