将PostgreSQL 9.2.1与Hibernate连接


Answers:


139

这是posgresql的hibernate.cfg.xml,它将帮助您使用posgresql的基本hibernate配置。

<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
    <session-factory>
        <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
        <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
        <property name="hibernate.connection.username">postgres</property>
        <property name="hibernate.connection.password">password</property>
        <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/hibernatedb</property>



        <property name="connection_pool_size">1</property>

        <property name="hbm2ddl.auto">create</property>

        <property name="show_sql">true</property>



       <mapping class="org.javabrains.sanjaya.dto.UserDetails"/>

    </session-factory>
</hibernate-configuration>

太好了,但是该文件放在哪里?在WEB-INF中?
里希克虚·乔杜里

1
@HrishikeshChoudhari应该在您的构建路径中。我认为WEB-INF会很好。我对Web项目没有太多了解,但是我觉得WEB-INF在构建路径中。
Sanjaya Liyanage

11
不推荐使用org.hibernate.dialect.PostgreSQLDialect。您应该改用org.hibernate.dialect.PostgreSQL82Dialect
长于

7
对于9.2及更高版本,应org.hibernate.dialect.PostgreSQL92Dialect改为使用。
ankush981 '16

这仍然有效吗?
肖恩·马尔特

6

如果项目是maven放置在中src/main/resources,则在打包阶段它将复制到../WEB-INF/classes/hibernate.cfg.xml


5

这是连接postgresql 9.5的hibernate.cfg.xml文件,这对您的基本配置有所帮助。

 <?xml version='1.0' encoding='utf-8'?>

<!--
  ~ Hibernate, Relational Persistence for Idiomatic Java
  ~
  ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
  ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
  -->
<!DOCTYPE hibernate-configuration SYSTEM
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration
>
    <session-factory>
        <!-- Database connection settings -->
        <property name="connection.driver_class">org.postgresql.Driver</property>
        <property name="connection.url">jdbc:postgresql://localhost:5433/hibernatedb</property>
        <property name="connection.username">postgres</property>
        <property name="connection.password">password</property>

        <!-- JDBC connection pool (use the built-in) -->
        <property name="connection.pool_size">1</property>

        <!-- SQL dialect -->
        <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>

        <!-- Enable Hibernate's automatic session context management -->
        <property name="current_session_context_class">thread</property>

        <!-- Disable the second-level cache  -->
        <property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>

        <!-- Echo all executed SQL to stdout -->
        <property name="show_sql">true</property>

        <!-- Drop and re-create the database schema on startup -->
        <property name="hbm2ddl.auto">create</property>
        <mapping class="com.waseem.UserDetails"/>
    </session-factory>
</hibernate-configuration>

确保文件位置应在src / main / resources / hibernate.cfg.xml下


-3

是的,通过将spring-boot与休眠配置文件一起使用,我们可以将数据持久保存到数据库中。将scf / main / resources文件夹中的.cfg.xml保持休眠状态,以读取与数据库相关的配置。

在此处输入图片说明


5
编辑您的文章,并以文本(而不是屏幕截图)的形式显示实际的代码/ XML。其他人则无法从您的图像中复制和粘贴。有关详细信息,请参见此处。谢谢。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.