⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abcproxytest.java

📁 人力资源管理系统主要包括:人员管理、招聘管理、培训管理、奖惩管理和薪金管理五大管理模块。
💻 JAVA
字号:
//$Id: ABCProxyTest.java,v 1.1.2.4 2003/12/02 14:24:41 oneovthafew Exp $package org.hibernate.test;import java.io.Serializable;import java.util.HashMap;import java.util.List;import java.util.Map;import junit.framework.Test;import junit.framework.TestSuite;import junit.textui.TestRunner;import net.sf.hibernate.Hibernate;import net.sf.hibernate.LockMode;import net.sf.hibernate.Session;import net.sf.hibernate.Transaction;public class ABCProxyTest extends TestCase {		public ABCProxyTest(String arg0) {		super(arg0);	}		public void testSharedColumn() throws Exception {		Session s = openSession();		Transaction t = s.beginTransaction();		C1 c1 = new C1();		C2 c2 = new C2();		c1.setC2(c2);		c2.setC1(c1);		s.save(c1); s.save(c2);		t.commit();		s.close();		s = openSession();		t = s.beginTransaction();		List list = s.find("from B");		assertTrue( list.size()==2 );		t.commit();		s.close();		s = openSession();		t = s.beginTransaction();		c1 = (C1) s.createQuery("from C1").uniqueResult();		c2 = (C2) s.createQuery("from C2").uniqueResult();		assertTrue( c1.getC2()==c2 );		assertTrue( c2.getC1()==c1 );		assertTrue( c1.getC2s().contains(c2) );		assertTrue( c2.getC1s().contains(c1) );		t.commit();		s.close();		s = openSession();		t = s.beginTransaction();		c1 = (C1) s.get( A.class, c1.getId() );		c2 = (C2) s.get( A.class, c2.getId() );		assertTrue( c1.getC2()==c2 );		assertTrue( c2.getC1()==c1 );		assertTrue( c1.getC2s().contains(c2) );		assertTrue( c2.getC1s().contains(c1) );		t.commit();		s.close();		s = openSession();		t = s.beginTransaction();		s.delete(c1); s.delete(c2);		t.commit();		s.close();	}		public void testSubclassing() throws Exception {		Session s = openSession();		Transaction t = s.beginTransaction();		C1 c1 = new C1();		D d = new D();		d.setAmount(213.34f);		c1.setAddress("foo bar");		c1.setCount(23432);		c1.setName("c1");		c1.setD(d);		s.save(c1);		d.setId( c1.getId() );		s.save(d);		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		A c1a = (A) s.load( A.class, c1.getId() );		assertFalse( Hibernate.isInitialized(c1a) );		assertTrue( c1a.getName().equals("c1") );		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		B c1b = (B) s.load( B.class, c1.getId() );		assertTrue(			(c1b.getCount()==23432) &&			c1b.getName().equals("c1")		);		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		c1 = (C1) s.load( C1.class, c1.getId() );		assertTrue(			c1.getAddress().equals("foo bar") &&			(c1.getCount()==23432) &&			c1.getName().equals("c1") &&			c1.getD().getAmount()>213.3f		);		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		c1a = (A) s.load( A.class, c1.getId() );		assertTrue( c1a.getName().equals("c1") );		c1 = (C1) s.load( C1.class, c1.getId() );		assertTrue(			c1.getAddress().equals("foo bar") &&			(c1.getCount()==23432) &&			c1.getName().equals("c1") &&			c1.getD().getAmount()>213.3f		);		c1b = (B) s.load( B.class, c1.getId() );		assertTrue(			(c1b.getCount()==23432) &&			c1b.getName().equals("c1")		);		assertTrue( c1a.getName().equals("c1") );		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		c1a = (A) s.load( A.class, c1.getId() );		assertTrue( c1a.getName().equals("c1") );		c1 = (C1) s.load( C1.class, c1.getId(), LockMode.UPGRADE );		assertTrue(			c1.getAddress().equals("foo bar") &&			(c1.getCount()==23432) &&			c1.getName().equals("c1") &&			c1.getD().getAmount()>213.3f		);		c1b = (B) s.load( B.class, c1.getId(), LockMode.UPGRADE );		assertTrue(			(c1b.getCount()==23432) &&			c1b.getName().equals("c1")		);		assertTrue( c1a.getName().equals("c1") );		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		c1a = (A) s.load( A.class, c1.getId() );		c1 = (C1) s.load( C1.class, c1.getId() );		c1b = (B) s.load( B.class, c1.getId() );		assertTrue( c1a.getName().equals("c1") );		assertTrue(			c1.getAddress().equals("foo bar") &&			(c1.getCount()==23432) &&			c1.getName().equals("c1") &&			c1.getD().getAmount()>213.3f		);		assertTrue(			(c1b.getCount()==23432) &&			c1b.getName().equals("c1")		);		System.out.println( s.delete("from a in class A") );		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		s.save( new B() );		s.save( new A() );		assertTrue( s.find("from b in class B").size()==1 );		assertTrue( s.find("from a in class A").size()==2 );		s.delete("from a in class A");		t.commit();		s.close();	}		public void testSubclassMap() throws Exception {		Session s = openSession();		Transaction t = s.beginTransaction();		B b = new B();		s.save(b);		Map map = new HashMap();		map.put("3", new Integer(1) ); 		b.setMap(map);		s.flush();		s.delete(b);		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		map = new HashMap();		map.put("3", new Integer(1) ); 		b = new B();		b.setMap(map);		s.save(b);		s.flush();		s.delete(b);		t.commit();		s.close();	}		public void testOneToOne() throws Exception {		Session s = openSession();		Transaction t = s.beginTransaction();		A a = new A();		E d1 = new E();		C1 c = new C1();		E d2 = new E();		a.setForward(d1);		d1.setReverse(a);		c.setForward(d2);		d2.setReverse(c);		Serializable aid = s.save(a);		Serializable d2id = s.save(d2);		t.commit();		s.close();		s = openSession();		t = s.beginTransaction();		List l = s.find( "from E e, A a where e.reverse = a.forward and a = ?", a, Hibernate.entity(A.class) );		assertTrue( l.size()==1 );		l = s.find( "from E e join fetch e.reverse" );		assertTrue( l.size()==2 );		t.commit();		s.close();		s = openSession();		t = s.beginTransaction();		l = s.find( "from E e" );		assertTrue( l.size()==2 );		E e = (E) l.get(0);		assertTrue( e==e.getReverse().getForward() );		e = (E) l.get(1);		assertTrue( e==e.getReverse().getForward() );		t.commit();		s.close();		s = openSession();		t = s.beginTransaction();		a = (A) s.load(A.class, aid);		d2 = (E) s.load(E.class, d2id);		assertTrue( a==a.getForward().getReverse() );		assertTrue( d2==d2.getReverse().getForward() );		s.delete(a);		s.delete( a.getForward() );		s.delete(d2);		s.delete( d2.getReverse() );		t.commit();				s = openSession();		t = s.beginTransaction();		l = s.find( "from E e" );		assertTrue( l.size()==0 );		t.commit();		s.close();	}	public String[] getMappings() {		return new String[] {  "ABCProxy.hbm.xml" };	}	public static Test suite() {		return new TestSuite(ABCProxyTest.class);	}		public static void main(String[] args) throws Exception {		TestRunner.run( suite() );	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -