我在休眠工具中找不到Postgresql表

时间:2019-04-09 07:00:27

标签: java eclipse hibernate

我正在使用Eclipse版本:Luna Service Release 2(4.4.2),x86,而Java版本是32位,postgresql版本是9.6。我通过 Hibernate配置文件(cfg.xml) Hibernate反向工程文件(reverng.xml)成功配置了Postgresql 9.6(64)连接并通过了测试,但是我不要总是在休眠反向工程文件(reveng.xml)配置中显示任何表。刷新也没有显示,请问我错过了什么吗? 以下代码是hibernate.cfg.xml文档的内容。谢谢任何人的帮助!

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory name="RcCloud">
        <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
        <property name="hibernate.connection.password">postgresql</property>
        <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/RcCloud</property>
        <property name="hibernate.connection.username">postgres</property>
        <property name="hibernate.default_schema">RcCloud</property>
        <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
    </session-factory>
</hibernate-configuration>

0 个答案:

没有答案