小编典典

将PostgreSQL 9.2.1与Hibernate连接

hibernate

我有一个空白的Spring MVC项目,并且已经使用Maven安装了Hibernate和PostgreSQL驱动程序。

我正在用完整的教程讲解如何显示PostgreSQL与Hibernate的连接。

这里有什么帮助吗?


阅读 263

收藏
2020-06-20

共1个答案

小编典典

这是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>
2020-06-20