私は休止状態に取り組んでいます。私は単純な Java をテストして、本の 2 つのエンティティを 2 つの別々のセッションでロードしています。最初の本オブジェクトをロードし、メイン スレッドを 5 秒間スリープさせ、その間にデータベース内の本の名前を変更しました。その後、2 番目のセッションでブックが再度読み込まれます。でも、本の名前はそのままです。また、変更されることが予想される場合。
助けてください。私はサーブレット プログラムを作成しましたが、同じ問題で、db の変更後に更新されたデータが表示されません。
これが私のコードです:
import java.util.Date;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.hibernate.CacheMode;
import org.hibernate.Hibernate;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.stat.Statistics;
/**
* @author Guruzu
*
*/
public class Launch_3_5 {
private static SessionFactory sessionFactory;
public static Session getSession() {
if (sessionFactory == null) {
sessionFactory = new Configuration().configure()
.buildSessionFactory();
}
Session hibernateSession = sessionFactory.openSession();
return hibernateSession;
}
public static SessionFactory getSessionFactory() {
if (sessionFactory == null) {
sessionFactory = new Configuration().configure()
.buildSessionFactory();
}
return sessionFactory;
}
public static void main(String[] args) {
Session session1 = getSessionFactory().openSession();
try {
Transaction tx = session1.beginTransaction();
Book book1 = (Book) session1.get(Book.class, (long) 1);
System.out.println("Book: " + book1.getName());
// session1.flush();
} finally {
session1.close();
}
try {
Thread.sleep(5000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Session session2 = getSessionFactory().openSession();
try {
Book book2 = (Book) session2.get(Book.class, (long) 1);
System.out.println("Book: " + book2.getName());
} finally {
session2.close();
}
}
}
Book6_1.hbm.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="Book" table="Book6_1">
<id name="book_id" type="long" column="BOOK_ID">
<generator class="increment">
</generator>
</id>
<property name="isbn" type="string">
<column name="ISBN" length="50" not-null="true" unique="true" />
</property>
<property name="name" type="string">
<column name="BOOK_NAME" length="100" not-null="true" />
</property>
<property name="publishDate" type="date" column="PUBLISH_DATE" />
<property name="price" type="int" column="PRICE" />
</class>
</hibernate-mapping>
hibernate.cfg.xml
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernatetutorial</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">root</property>
<property name="hibernate.connection.pool_size">10</property>
<property name="show_sql">true</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<mapping resource="Book_6_1.hbm.xml" />
</session-factory>
</hibernate-configuration>