如何使用postgresql数据库在hibernate中获取远程端数据库的数据

时间:2016-05-10 12:15:07

标签: java database hibernate postgresql

我正在使用Postgresql数据库。我需要知道如何在hibernate.cfg.xml中为远程连接提供连接URL。我在下面给出了line.but我无法从数据库中检索数据。

 <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
 <property name="hibernate.connection.url">jdbc:postgresql://hostIP:5432/databasename</property>
  <property name="hibernate.connection.username">postgres</property>
    <property name="hibernate.connection.password">password</property>

1 个答案:

答案 0 :(得分:1)

请尝试以下hibernate.cfg.xml并将HOSTIP更改为存在数据库的主机IP。和DATABASENAME以及您的数据库名称以及usernamepassword

<!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://HOSTIP:5432/DATABASENAME</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>