typedonetoonetest.java
来自「好东西,hibernate-3.2.0,他是一开元的树杖hibernate-3.」· Java 代码 · 共 103 行
JAVA
103 行
//$Id: TypedOneToOneTest.java 10411 2006-09-01 20:26:21Z steve.ebersole@jboss.com $
package org.hibernate.test.typedonetoone;
import java.util.List;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.hibernate.Hibernate;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.test.TestCase;
/**
* @author Gavin King
*/
public class TypedOneToOneTest extends TestCase {
public TypedOneToOneTest(String str) {
super(str);
}
public void testCreateQuery() {
Customer cust = new Customer();
cust.setCustomerId("abc123");
cust.setName("Matt");
Address ship = new Address();
ship.setStreet("peachtree rd");
ship.setState("GA");
ship.setCity("ATL");
ship.setZip("30326");
ship.setAddressId( new AddressId("SHIPPING", "abc123") );
ship.setCustomer(cust);
Address bill = new Address();
bill.setStreet("peachtree rd");
bill.setState("GA");
bill.setCity("ATL");
bill.setZip("30326");
bill.setAddressId( new AddressId("BILLING", "abc123") );
bill.setCustomer(cust);
cust.setBillingAddress(bill);
cust.setShippingAddress(ship);
Session s = openSession();
Transaction t = s.beginTransaction();
s.persist(cust);
t.commit();
s.close();
s = openSession();
t = s.beginTransaction();
List results = s.createQuery("from Customer cust left join fetch cust.billingAddress where cust.customerId='abc123'").list();
//List results = s.createQuery("from Customer cust left join fetch cust.billingAddress left join fetch cust.shippingAddress").list();
cust = (Customer) results.get(0);
assertTrue( Hibernate.isInitialized( cust.getShippingAddress() ) );
assertTrue( Hibernate.isInitialized( cust.getBillingAddress() ) );
assertEquals( "30326", cust.getBillingAddress().getZip() );
assertEquals( "30326", cust.getShippingAddress().getZip() );
assertEquals( "BILLING", cust.getBillingAddress().getAddressId().getType() );
assertEquals( "SHIPPING", cust.getShippingAddress().getAddressId().getType() );
s.delete( cust );
t.commit();
s.close();
}
public void testCreateQueryNull() {
Customer cust = new Customer();
cust.setCustomerId("xyz123");
cust.setName("Matt");
Session s = openSession();
Transaction t = s.beginTransaction();
s.persist(cust);
t.commit();
s.close();
s = openSession();
t = s.beginTransaction();
List results = s.createQuery("from Customer cust left join fetch cust.billingAddress where cust.customerId='xyz123'").list();
//List results = s.createQuery("from Customer cust left join fetch cust.billingAddress left join fetch cust.shippingAddress").list();
cust = (Customer) results.get(0);
assertNull( cust.getShippingAddress() );
assertNull( cust.getBillingAddress() );
s.delete(cust);
t.commit();
s.close();
}
protected String[] getMappings() {
return new String[] { "typedonetoone/Customer.hbm.xml" };
}
public static Test suite() {
return new TestSuite(TypedOneToOneTest.class);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?