我正在使用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>
答案 0 :(得分:1)
请尝试以下hibernate.cfg.xml
并将HOSTIP
更改为存在数据库的主机IP。和DATABASENAME
以及您的数据库名称以及username
和password
。
<!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>