我正在尝试从我在Postgres中创建的数据库中反向设计pojos(在eclipse 3.4.2中使用hibernate工具插件v3.2.4x),但我的表被忽略了。如果我在hibernate.cfg.xml文件中将'public'指定为'hibernate.default_schema'属性的值,但是如果我尝试指定不同的模式,则无效。
我已经尝试修改案例(即下层,上层,驼峰),但我仍然得到相同的结果。这是我的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="MyFactory">
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.password">[mypassword]</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/testgis</property>
<property name="hibernate.connection.username">postgres</property>
<property name="hibernate.default_schema">locatimus</property>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
</session-factory>
</hibernate-configuration>
以下是我在pgAdmin III中设置的图片 - http://twitpic.com/snj8i
我很确定我正在做(或遗失)一些简单的事情。正如我所说,如果我将模式更改为public,则会生成该模式中所有表的pojos!
有人可以帮忙吗?
非常感谢, 达米安
答案 0 :(得分:3)
好的,我发现了问题。看起来表名必须是小写的,或者hibernate工具看不到它们。我不知道这是PostgresSQL方言或Hibernate本身的错误。
答案 1 :(得分:0)
postgres用户是否对locatimus架构中的表有权限?