propertydefaultmappingstest.java

来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 63 行

JAVA
63
字号
//$Id: PropertyDefaultMappingsTest.java 11282 2007-03-14 22:05:59Z epbernard $package org.hibernate.test.annotations.entity;import org.hibernate.Session;import org.hibernate.Transaction;import org.hibernate.test.annotations.TestCase;/** * @author Emmanuel Bernard */public class PropertyDefaultMappingsTest extends TestCase {	public PropertyDefaultMappingsTest(String x) {		super( x );	}	public void testSerializableObject() throws Exception {		Session s;		Transaction tx;		s = openSession();		tx = s.beginTransaction();		Country c = new Country();		c.setName( "France" );		Address a = new Address();		a.setCity( "Paris" );		a.setCountry( c );		s.persist( a );		tx.commit();		s.close();		s = openSession();		tx = s.beginTransaction();		Address reloadedAddress = (Address) s.get( Address.class, a.getId() );		assertNotNull( reloadedAddress );		assertNotNull( reloadedAddress.getCountry() );		assertEquals( a.getCountry().getName(), reloadedAddress.getCountry().getName() );		tx.rollback();		s.close();	}	public void testTransientField() throws Exception {		Session s = openSession();		Transaction tx = s.beginTransaction();		WashingMachine wm = new WashingMachine();		wm.setActive( true );		s.persist( wm );		tx.commit();		s.clear();		tx = s.beginTransaction();		wm = (WashingMachine) s.get( WashingMachine.class, wm.getId() );		assertFalse( "transient should not be persistent", wm.isActive() );		s.delete( wm );		tx.commit();		s.close();	}	protected Class[] getMappings() {		return new Class[]{				Address.class,				WashingMachine.class		};	}}

⌨️ 快捷键说明

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