我正在尝试将Hibernate(3.2.5)与PostgreSQL 8.2连接起来,但是当我尝试在hbm.xml文件中映射带有关系证书的类证书时,我遇到了异常:
PSQLException:错误:关系“证书”不存在
用于创建证书的SQL:
CREATE TABLE "Certificate"
(
id bigint NOT NULL,
name text,
CONSTRAINT certificate_pk1 PRIMARY KEY (id)
)
WITHOUT OIDS;
POJO clas'证书'是:
public class Certificate implements Serializable {
private static final long serialVersionUID = 1L;
private Long id;
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String toString() {
return "model.Certificate[id=" + id + "]";
}
}
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>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost /Company</property>
<property name="hibernate.connection.username">postgres</property>
<property name="hibernate.connection.password">abc123</property>
<mapping resource="hibernate.hbm.xml"/>
</session-factory>
</hibernate-configuration>
答案 0 :(得分:4)
这是错误:
PSQLException:错误:关系“证书”不存在
这是你的表:
“证书”
数据库正在搜索小写“证书”,您创建了UPPER案例“证书”。
在所有标识符周围使用相同的大写和双引号,或者只使用小写以简化操作。