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

📄 onetooneformulatest.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
//$Id: OneToOneFormulaTest.java,v 1.4 2005/02/21 14:41:02 oneovthafew Exp $package org.hibernate.test.onetooneformula;import junit.framework.Test;import junit.framework.TestSuite;import org.hibernate.FetchMode;import org.hibernate.Hibernate;import org.hibernate.Session;import org.hibernate.Transaction;import org.hibernate.cfg.Configuration;import org.hibernate.cfg.Environment;import org.hibernate.criterion.Property;import org.hibernate.test.TestCase;/** * @author Gavin King */public class OneToOneFormulaTest extends TestCase {		public OneToOneFormulaTest(String str) {		super(str);	}		public void testOneToOneFormula() {		Person p = new Person();		p.setName("Gavin King");		Address a = new Address();		a.setPerson(p);		a.setType("HOME");		a.setZip("3181");		a.setState("VIC");		a.setStreet("Karbarook Ave");		p.setAddress(a);				Session s = openSession();		Transaction t = s.beginTransaction();		s.persist(p);		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();		p = (Person) s.createQuery("from Person").uniqueResult();				assertNotNull( p.getAddress() );		assertTrue( Hibernate.isInitialized( p.getAddress() ) );		assertNull( p.getMailingAddress() );		s.clear();		p = (Person) s.createQuery("from Person p left join fetch p.mailingAddress left join fetch p.address").uniqueResult();		assertNotNull( p.getAddress() );		assertTrue( Hibernate.isInitialized( p.getAddress() ) );		assertNull( p.getMailingAddress() );		s.clear();		p = (Person) s.createQuery("from Person p left join fetch p.address").uniqueResult();		assertNotNull( p.getAddress() );		assertTrue( Hibernate.isInitialized( p.getAddress() ) );		assertNull( p.getMailingAddress() );		s.clear();		p = (Person) s.createCriteria(Person.class)			.createCriteria("address")				.add( Property.forName("zip").eq("3181") )			.uniqueResult();		assertNotNull(p);				s.clear();		p = (Person) s.createCriteria(Person.class)			.setFetchMode("address", FetchMode.JOIN)			.uniqueResult();		assertNotNull( p.getAddress() );		assertTrue( Hibernate.isInitialized( p.getAddress() ) );		assertNull( p.getMailingAddress() );				s.clear();		p = (Person) s.createCriteria(Person.class)			.setFetchMode("mailingAddress", FetchMode.JOIN)			.uniqueResult();		assertNotNull( p.getAddress() );		assertTrue( Hibernate.isInitialized( p.getAddress() ) );		assertNull( p.getMailingAddress() );				s.delete(p);				t.commit();		s.close();			}		public void testOneToOneEmbeddedCompositeKey() {		Person p = new Person();		p.setName("Gavin King");		Address a = new Address();		a.setPerson(p);		a.setType("HOME");		a.setZip("3181");		a.setState("VIC");		a.setStreet("Karbarook Ave");		p.setAddress(a);				Session s = openSession();		Transaction t = s.beginTransaction();		s.persist(p);		t.commit();		s.close();				s = openSession();		t = s.beginTransaction();				a = new Address();		a.setType("HOME");		a.setPerson(p);		a = (Address) s.load(Address.class, a);		assertFalse( Hibernate.isInitialized(a) );		a.getPerson();		a.getType();		assertFalse( Hibernate.isInitialized(a) );		assertEquals(a.getZip(), "3181");				s.clear();				a = new Address();		a.setType("HOME");		a.setPerson(p);		Address a2 = (Address) s.get(Address.class, a);		assertTrue( Hibernate.isInitialized(a) );		assertSame(a2, a);		assertSame(a2.getPerson(), p); //this is a little bit desirable		assertEquals(a.getZip(), "3181");				s.delete(a2);		s.delete( s.get( Person.class, p.getName() ) ); //this is certainly undesirable! oh well...				t.commit();		s.close();			}		protected String[] getMappings() {		return new String[] { "onetooneformula/Person.hbm.xml" };	}	protected void configure(Configuration cfg) {		cfg.setProperty(Environment.USE_SECOND_LEVEL_CACHE, "false");		cfg.setProperty(Environment.GENERATE_STATISTICS, "true");		cfg.setProperty(Environment.DEFAULT_BATCH_FETCH_SIZE, "2");	}		public static Test suite() {		return new TestSuite(OneToOneFormulaTest.class);	}}

⌨️ 快捷键说明

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