1

JBoss と Hibernate を使用して Web アプリケーションをセットアップしようとしていますが、SQL データベースを実行できず、いくつかの問題が発生しています。

私の主な問題は、 persist() Hibernateを呼び出して空のオブジェクトをテーブルに挿入しようとすると、ログが次の例外で始まることです。

12:39:26,985 INFO  [org.hibernate.tool.hbm2ddl.SchemaUpdate] (http--127.0.0.1-8080-1) HHH000228: Running hbm2ddl schema update
12:39:26,986 INFO  [org.hibernate.tool.hbm2ddl.SchemaUpdate] (http--127.0.0.1-8080-1) HHH000102: Fetching database metadata
12:39:26,987 ERROR [org.hibernate.tool.hbm2ddl.SchemaUpdate] (http--127.0.0.1-8080-1) HHH000319: Could not get database metadata: java.sql.SQLException: You cannot set autocommit during a managed transaction!
at org.jboss.jca.adapters.jdbc.BaseWrapperManagedConnection.setJdbcAutoCommit(BaseWrapperManagedConnection.java:888)

Google を使用した後、解決方法がよくわかりませんでしたが、アプリケーションは引き続き実行されます。この後、Hibernate は作成されたオブジェクトに対してpersist()を呼び出そうとするようです。

12:39:27,202 INFO  [stdout] (http--127.0.0.1-8080-1) Hibernate: 
12:39:27,202 INFO  [stdout] (http--127.0.0.1-8080-1)     insert 
12:39:27,203 INFO  [stdout] (http--127.0.0.1-8080-1)     into
12:39:27,203 INFO  [stdout] (http--127.0.0.1-8080-1)         Person
12:39:27,203 INFO  [stdout] (http--127.0.0.1-8080-1)         (id, birthdate, gender, name, password) 
12:39:27,204 INFO  [stdout] (http--127.0.0.1-8080-1)     values
12:39:27,204 INFO  [stdout] (http--127.0.0.1-8080-1)         (null, ?, ?, ?, ?)

Logger を使用すると、このPersonオブジェクトが正しく作成されていることがわかりましたが、ご覧のとおり、Hibernate では値が (null、?、?、?、?) として認識されます。

この後、次の例外がスローされます。

12:39:27,218 ERROR [org.apache.tapestry5.ioc.Registry] (http--127.0.0.1-8080-1) org.hibernate.exception.ConstraintViolationException: integrity constraint violation: NOT NULL check constraint; SYS_CT_10031 table: PERSON column: ID

それで、私のpersistence.xmlは次のとおりです。

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="facePlace">
<non-jta-data-source>java:jboss/facePlace</non-jta-data-source>
<class>webtech2.faceplace.entities.Person</class>
<properties>
  <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
  <property name="hibernate.hbm2ddl.auto" value="update"/>
  <property name="hibernate.format_sql" value="true"/>
  <property name="hibernate.show_sql" value="true"/>
</properties>

関連するコードは次のとおりです。

@Inject
@Persistence
EntityManager em;

public boolean signUp(String name,
      String password,
      String repeatPassword,
      Date birthdate,
      String gender) {
if (!password.equals(repeatPassword)) {
  return false;
}

log.info("person data: " + name + " " + password + " " + repeatPassword + " " + birthdate.toString() + " " + gender);

String saltedPassword = hashText + password;
String hashedPassword = generateHash(saltedPassword);
em.getTransaction().begin();
Person xperson = new Person(name, hashedPassword, birthdate, gender);
em.persist(xperson);
em.getTransaction().commit();
return true;
}

私のエンティティは次のようになります。

@Entity
public class Person implements Serializable {

private String name;
private Date birthdate;
private long id;
private String password;
private String gender;
private Set<Person> friends;

@Id
@GeneratedValue
public long getId() {
  return id;
}

public void setId(long id) {
  this.id = id;
}

だから私はこのすべての専門家ではありません.誰かがそこに何かを見ていますか?

4

1 に答える 1

1

hibrenateがファイルを保存するときに、主キーが設定されていないようです。@Entityの@Id列は、パラメータなしで@GeneratedValueを残し、休止状態でデフォルトの生成開始を選択するのではなく、主キー生成戦略を指定する必要があります。

設定したデータベースでID列を使用している場合。

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name="pkey")
    private Integer pkey;
于 2012-06-24T13:29:54.170 に答える