我是hibernate和heroku的新手。我在 heroku 上创建了一个数据库,并尝试使用我的 eclipse 插件访问数据库 - hibernate 以生成 POJO 类。我收到类似“读取架构错误:获取数据库元数据”的错误。我检查了用户名、密码、数据库名称..一切似乎都是正确的,我无法连接 PGAdmin 工具(访问 Postgres 数据库)。
你能帮我把heroku数据库和eclipse hibernate插件连接起来吗?
<?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>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.password">xxxxxx</property>
<property name="hibernate.connection.url">jdbc:postgresql://xxxxx:5432/xxxxx</property>
<property name="hibernate.connection.username">xxxxxxx</property>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.default_schema">xxxxxx</property>
</session-factory>
任何帮助表示赞赏!