Hibernate HQL クエリが古いデータを返しているようです。
Account という単純な Java クラスがあり、そのインスタンスは、ユーザー名と姓の 2 つの varchar 列を持つ単一のデータベース テーブルにマップされます。
次のような HQL クエリを実行すると:
List<?> accountList = session.createQuery("from Account where surname is null").list();
期待どおり、Account オブジェクトの List が返されます (テーブル内の一部の行には、null 姓フィールドが実際に含まれています)。
次に、返されたオブジェクトの姓を null 以外の値に設定します。
Iterator<?> accountIter = accountList.iterator();
while (accountIter.hasNext()) {
Account account = (Account) accountIter.next();
log("Adding surname of Jones to : " + account.getUsername());
account.setSurname("Jones");
}
この時点で、再度 HQL クエリを実行すると、空のリストが返されることが予想されますが (姓はすべて null でない必要があるため)、最初にクエリを実行したときと同じオブジェクトが返されます。これは私が期待したものではありません。
Hibernate docs からの引用:
http://docs.jboss.org/hibernate/orm/4.1/manual/en-US/html_single/
「セッションがいつJDBC呼び出しを実行するかについての保証はまったくなく、それらが実行される順序のみです。ただし、Hibernateは Query.list(..) が古いデータまたは正しくないデータを決して返さないことを保証します。」
これは、私のコードの動作に反しているようです。以下のリスト 4 のプログラム出力を見ると、SQL Update ステートメントはすべての select ステートメントの後に発生するため、最後の select は正しくないデータを返します。何が起こっているのか、または私が間違っていることを誰かが明らかにすることはできますか?
苗字の設定をトランザクションで囲んで実行すればOKなのsession.saveOrUpdate(account)
ですが、これは必須ではないと思いました。
可能であればドメイン クラスのみを処理するコードを作成し、永続化コードを可能な限りなくしたいと考えています。
Java 1.6でHibernate 4.1.8.Finalを使用しています
私の完全なコードリストは次のとおりです。
リスト 1: Main.java:
package uk.ac.york.cserv.hibernatetest;
import java.util.Iterator;
import java.util.List;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
public class Main {
private static SessionFactory sf;
Session session;
public static void main(String[] args) {
Main main = new Main();
main.doExample();
}
public Main() {
sf = new Configuration()
.configure("hibernate-ora.cfg.xml")
.buildSessionFactory();
session = sf.openSession();
}
public void closeSession() {
session.flush();
session.close();
}
public List<?> getAccountList() {
return session.createQuery("from Account where surname is null").list();
}
public void printAccountList(List<?> accountList) {
Iterator<?> accountIter = accountList.iterator();
while (accountIter.hasNext()) {
System.out.println(accountIter.next());
}
}
public void log(String msg) {
System.out.println(msg);
}
public void doExample() {
log("Print all accounts with null surnames...");
printAccountList(getAccountList());
log("Adding surnames to accounts that have null surnames...");
//session.beginTransaction();
Iterator<?> accountIter = getAccountList().iterator();
while (accountIter.hasNext()) {
Account account = (Account) accountIter.next();
log("Adding surname of Jones to : " + account.getUsername());
account.setSurname("Jones");
//session.saveOrUpdate(account);
}
//session.getTransaction().commit();
log("Again print all accounts that have null surnames (should be none)...");
printAccountList(getAccountList());
closeSession();
}
}
リスト 2: Account.java:
package uk.ac.york.cserv.hibernatetest;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name="ACCOUNTS")
public class Account {
@Id
@Column(name = "USERNAME", unique = true, nullable = false)
private String username;
@Column(name = "SURNAME")
private String surname;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getSurname() {
return surname;
}
public void setSurname(String surname) {
this.surname = surname;
}
@Override
public String toString() {
return "Account [username=" + username + ", surname=" + surname + "]";
}
}
リスト 3: Hibernate-ora.cfg.xml:
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="connection.url">jdbc:oracle:thin:@testhost:1521:test</property>
<property name="connection.username">testschema</property>
<property name="connection.password">testpassword</property>
<!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">1</property>
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.Oracle10gDialect</property>
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Names of the annotated classes -->
<mapping class="uk.ac.york.cserv.hibernatetest.Account"/>
</session-factory>
</hibernate-configuration>
リスト 4: プログラムの出力:
Print all accounts with null surnames...
Hibernate: select account0_.USERNAME as USERNAME0_, account0_.SURNAME as SURNAME0_ from ACCOUNTS account0_ where account0_.SURNAME is null
Account [username=user2, surname=null]
Adding surnames to accounts that have null surnames...
Hibernate: select account0_.USERNAME as USERNAME0_, account0_.SURNAME as SURNAME0_ from ACCOUNTS account0_ where account0_.SURNAME is null
Adding surname of Jones to : user2
Again print all accounts that have null surnames (should be none)...
Hibernate: select account0_.USERNAME as USERNAME0_, account0_.SURNAME as SURNAME0_ from ACCOUNTS account0_ where account0_.SURNAME is null
Account [username=user2, surname=Jones]
Hibernate: update ACCOUNTS set SURNAME=? where USERNAME=?