我正在使用Hibernate 3.3.1 GA
and设置一个项目PostgreSQL 8.3
。我刚刚创建了一个数据库,第一个表,在那里添加了一行,现在正在配置 Hibernate。
但是,即使是最简单的查询:
Criteria criteria = session.createCriteria(Place.class);
List result = criteria.list();
无法执行(尽管数据库中有一条记录,但返回空列表)。我查看了 PostgreSQL 日志以查看:
2008-09-17 22:52:59 CEST LOG: connection received: host=192.168.175.1 port=2670
2008-09-17 22:52:59 CEST LOG: connection authorized: user=... database=...
2008-09-17 22:53:00 CEST LOG: execute <unnamed>: SHOW TRANSACTION ISOLATION LEVEL
2008-09-17 22:53:02 CEST LOG: could not receive data from client: Connection reset by peer
2008-09-17 22:53:02 CEST LOG: unexpected EOF on client connection
2008-09-17 22:53:02 CEST LOG: disconnection: session time: 0:00:03.011 user=... database=... host=192.168.175.1 port=2670
我使用纯 JDBC 编写了一个简单的程序来获取相同的数据,并且它工作正常。这种情况下的 PostgreSQL 日志如下所示(用于比较):
2008-09-17 22:52:24 CEST LOG: connection received: host=192.168.175.1 port=2668
2008-09-17 22:52:24 CEST LOG: connection authorized: user=... database=...
2008-09-17 22:52:25 CEST LOG: execute <unnamed>: SELECT * from PLACE
2008-09-17 22:52:25 CEST LOG: disconnection: session time: 0:00:00.456 user=... database=... host=192.168.175.1 port=2668
Hibernate 调试日志不指示任何错误。如果我采用日志中列出的查询:
15:17:01,859 DEBUG org.hibernate.loader.entity.EntityLoader:静态选择实体 com.example.data.Place:选择 place0_.ID 作为 ID0_0_,place0_.NAME 作为 NAME0_0_,place0_.LATITUDE 作为 LATITUDE0_0_,place0_.LONGITUDE作为 LONGITUDE0_0_ 从 PLACE place0_ where place0_.ID=?
并在 psql 中再次执行数据库,它可以工作(这意味着 Hibernate 已经生成了正确的 SQL)。
下面是休眠配置:
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.url">jdbc:postgresql://192.168.175.128:5433/...</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.username">...</property>
<property name="hibernate.connection.password">...</property>
<property name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.use_outer_join">true</property>
<mapping resource="com/example/data/Place.hbm.xml"/>
</session-factory>
</hibernate-configuration>
...和映射文件:
<hibernate-mapping package="com.example.data">
<class name="com.example.data.Place" table="PLACE">
<id column="ID" name="id" type="java.lang.Integer">
<generator class="native"/>
</id>
<property column="NAME" name="name" not-null="true" type="java.lang.String">
<meta attribute="use-in-tostring">true</meta>
</property>
<property column="LATITUDE" name="latitude" not-null="true" type="java.lang.Float">
<meta attribute="use-in-tostring">true</meta>
</property>
<property column="LONGITUDE" name="longitude" not-null="true" type="java.lang.Float">
<meta attribute="use-in-tostring">true</meta>
</property>
</class>
</hibernate-mapping>
谷歌搜索unexpected EOF
日志条目并不有趣。任何想法,社区?