私は休止状態とpostgresが初めてです。実際、Hibernateを使用してpotgresデータベースをマップしようとしています。これはpostgresqlの私のテーブル構造です
CREATE TABLE employee
(
id serial NOT NULL,
firstname character varying(20),
lastname character varying(20),
birth_date date,
cell_phone character varying(15),
CONSTRAINT employee_pkey PRIMARY KEY (id )
)
次のコードを使用してデータベースにレコードを追加しようとしています
System.out.println("******* WRITE *******");
Employee empl = new Employee("Jack", "Bauer", new Date(System.currentTimeMillis()), "911");
empl = save(empl);
//This is the save function
private static Employee save(Employee employee) {
SessionFactory sf = HibernateUtil.getSessionFactory();
Session session = sf.openSession();
session.beginTransaction();
int id = (Integer) session.save(employee);
employee.setId(id);
session.getTransaction().commit();
session.close();
return employee;
}
コードを実行すると、次のエラーが表示されます
org.hibernate.HibernateException: Missing sequence or table: hibernate_sequence
Exception in thread "main" Java.lang.ExceptionInInitializerError
at org.tcs.com.Hibernate.HibernateUtil.buildSessionFactory(HibernateUtil.Java:18)
at org.tcs.com.Hibernate.HibernateUtil.<clinit>(HibernateUtil.Java:8)
at org.tcs.com.Hibernate.MainApp.list(MainApp.Java:51)
at org.tcs.com.Hibernate.MainApp.main(MainApp.Java:17)
Caused by: org.hibernate.HibernateException: Missing sequence or table: hibernate_sequence
at org.hibernate.cfg.Configuration.validateSchema(Configuration.Java:1282)
at org.hibernate.tool.hbm2ddl.SchemaValidator.validate(SchemaValidator.Java:155)
at org.hibernate.internal.SessionFactoryImpl.<init>(SessionFactoryImpl.Java:498)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.Java:1740)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.Java:1778)
at org.tcs.com.Hibernate.HibernateUtil.buildSessionFactory(HibernateUtil.Java:15)
... 3 more
データベースに「employee_id_seq」というシーケンスがあります。しかし、データベースがhibernate_seqを探している理由がわかりません。誰かがエラーと理由を説明できますか。
前もって感謝します!
追加情報
これは私の従業員のクラスです
import Java.sql.Date;
public class Employee {
private int id;
private String firstname;
private String lastname;
private Date birthDate;
private String cellphone;
public Employee() {
}
public Employee(String firstname, String lastname, Date birthdate, String phone) {
this.firstname = firstname;
this.lastname = lastname;
this.birthDate = birthdate;
this.cellphone = phone;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getFirstname() {
return firstname;
}
public void setFirstname(String firstname) {
this.firstname = firstname;
}
public String getLastname() {
return lastname;
}
public void setLastname(String lastname) {
this.lastname = lastname;
}
public Date getBirthDate() {
return birthDate;
}
public void setBirthDate(Date birthDate) {
this.birthDate = birthDate;
}
public String getCellphone() {
return cellphone;
}
public void setCellphone(String cellphone) {
this.cellphone = cellphone;
}
}
重要なビットEmployee
クラスを投稿していません。
しかし、私の推測では、使用するシーケンスを指定せずにEmployeeクラスが@GeneratedValue()
を使用しています。そのため、Hibernateはデフォルト名hibernate_sequenceを使用します。
GeneratedValueアノテーションの一部としてシーケンス名を指定できます。例えば。
@GeneratedValue(strategy=SEQUENCE, generator="employee_id_seq")
ドメインまたはModelオブジェクトで、以下のようにidフィールドに注釈を付けて、機能するはずです。私にとっては、GenerationType.AUTOが失敗しました
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
簡単なソリューション:
hibernate_sequenceテーブルを次のように作成します。
"create sequence <schema>.hibernate_sequence"
注釈を使用しない場合は、YourClass.hbm.xmlファイルを変更する必要があります。
IDセクションは次のとおりです。
<id name="id" type="int" column="id">
<generator class="sequence">
<param name="sequence">employee_id_seq</param>
</generator>
</id>
ファイルのサンプル:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="Employee" table="EMPLOYEE">
<meta attribute="class-description">
This class contains the employee detail.
</meta>
<id name="id" type="int" column="id">
<generator class="sequence">
<param name="sequence">employee_id_seq</param>
</generator>
</id>
<property name="firstName" column="first_name" type="string"/>
<property name="lastName" column="last_name" type="string"/>
<property name="salary" column="salary" type="int"/>
</class>
</hibernate-mapping>
2つのことができます。 1つは、postgresqlで空のhibernate_sequenceテーブルを手動で作成することです。 2つ目は、ユーザーアカウントのアクセス許可と競合があり、grailsがそのテーブルを作成できないことです。
私にとって、このエラーの原因は間違ったバージョンのMySql.Dataライブラリでした。
Web.configでバージョン6.9.6.0が定義されていましたが、実際の参照バージョンは古いものでした。
私はちょうどコメントアウトしました:
<system.data>
<DbProviderFactories>
<remove invariant="MySql.Data.MySqlClient" />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.6.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>
</system.data>