📄 proxyreattachmenttest.java
字号:
package org.hibernate.test.reattachment;
import java.util.Set;
import java.util.Iterator;
import java.util.HashSet;
import junit.framework.Test;
import org.hibernate.junit.functional.FunctionalTestCase;
import org.hibernate.junit.functional.FunctionalTestClassTestSuite;
import org.hibernate.Session;
/**
* Test of proxy reattachment semantics
*
* @author Steve Ebersole
*/
public class ProxyReattachmentTest extends FunctionalTestCase {
public ProxyReattachmentTest(String string) {
super( string );
}
public static Test suite() {
return new FunctionalTestClassTestSuite( ProxyReattachmentTest.class );
}
public String[] getMappings() {
return new String[] { "reattachment/Mappings.hbm.xml" };
}
public void testUpdateAfterEvict() {
Session s = openSession();
s.beginTransaction();
Parent p = new Parent( "p" );
s.save( p );
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
p = ( Parent ) s.load( Parent.class, "p" );
// evict...
s.evict( p );
// now try to reattach...
s.update( p );
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
s.delete( p );
s.getTransaction().commit();
s.close();
}
public void testUpdateAfterClear() {
Session s = openSession();
s.beginTransaction();
Parent p = new Parent( "p" );
s.save( p );
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
p = ( Parent ) s.load( Parent.class, "p" );
// clear...
s.clear();
// now try to reattach...
s.update( p );
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
s.delete( p );
s.getTransaction().commit();
s.close();
}
public void testIterateWithClearTopOfLoop() {
Session s = openSession();
s.beginTransaction();
Set parents = new HashSet();
for (int i=0; i<5; i++) {
Parent p = new Parent( String.valueOf( i ) );
Child child = new Child( "child" + i );
child.setParent( p );
p.getChildren().add( child );
s.save( p );
parents.add(p);
}
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
int i = 0;
for ( Iterator it = s.createQuery( "from Parent" ).iterate(); it.hasNext(); ) {
i++;
if (i % 2 == 0) {
s.flush();
s.clear();
}
Parent p = (Parent) it.next();
assertEquals( 1, p.getChildren().size() );
}
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
for (Iterator it=parents.iterator(); it.hasNext(); ) {
s.delete(it.next());
}
s.getTransaction().commit();
s.close();
}
public void testIterateWithClearBottomOfLoop() {
Session s = openSession();
s.beginTransaction();
Set parents = new HashSet();
for (int i=0; i<5; i++) {
Parent p = new Parent( String.valueOf( i ) );
Child child = new Child( "child" + i );
child.setParent( p );
p.getChildren().add( child );
s.save( p );
parents.add(p);
}
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
int i = 0;
for (Iterator it = s.createQuery( "from Parent" ).iterate(); it.hasNext(); ) {
Parent p = (Parent) it.next();
assertEquals( 1, p.getChildren().size() );
i++;
if (i % 2 == 0) {
s.flush();
s.clear();
}
}
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
for (Iterator it=parents.iterator(); it.hasNext(); ) {
s.delete(it.next());
}
s.getTransaction().commit();
s.close();
}
public void testIterateWithEvictTopOfLoop() {
Session s = openSession();
s.beginTransaction();
Set parents = new HashSet();
for (int i=0; i<5; i++) {
Parent p = new Parent( String.valueOf( i + 100 ) );
Child child = new Child( "child" + i );
child.setParent( p );
p.getChildren().add( child );
s.save( p );
parents.add(p);
}
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
Parent p = null;
for (Iterator it = s.createQuery( "from Parent" ).iterate(); it.hasNext(); ) {
if ( p != null) { s.evict(p); }
p = (Parent) it.next();
assertEquals( 1, p.getChildren().size() );
}
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
for (Iterator it=parents.iterator(); it.hasNext(); ) {
s.delete(it.next());
}
s.getTransaction().commit();
s.close();
}
public void testIterateWithEvictBottomOfLoop() {
Session s = openSession();
s.beginTransaction();
Set parents = new HashSet();
for (int i=0; i<5; i++) {
Parent p = new Parent( String.valueOf( i + 100 ) );
Child child = new Child( "child" + i );
child.setParent( p );
p.getChildren().add( child );
s.save( p );
parents.add(p);
}
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
for (Iterator it = s.createQuery( "from Parent" ).iterate(); it.hasNext(); ) {
Parent p = (Parent) it.next();
assertEquals( 1, p.getChildren().size() );
s.evict(p);
}
s.getTransaction().commit();
s.close();
s = openSession();
s.beginTransaction();
for (Iterator it=parents.iterator(); it.hasNext(); ) {
s.delete(it.next());
}
s.getTransaction().commit();
s.close();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -