📄 formulajointest.java
字号:
//$Id: FormulaJoinTest.java 10977 2006-12-12 23:28:04Z steve.ebersole@jboss.com $package org.hibernate.test.formulajoin;import java.util.List;import junit.framework.Test;import org.hibernate.Session;import org.hibernate.Transaction;import org.hibernate.dialect.PostgreSQLDialect;import org.hibernate.junit.functional.FunctionalTestCase;import org.hibernate.junit.functional.FunctionalTestClassTestSuite;/** * @author Gavin King */public class FormulaJoinTest extends FunctionalTestCase { public FormulaJoinTest(String str) { super(str); } public String[] getMappings() { return new String[] { "formulajoin/Master.hbm.xml" }; } public static Test suite() { return new FunctionalTestClassTestSuite( FormulaJoinTest.class ); } public void testFormulaJoin() { Session s = openSession(); Transaction tx = s.beginTransaction(); Master master = new Master(); master.setName("master 1"); Detail current = new Detail(); current.setCurrentVersion(true); current.setVersion(2); current.setDetails("details of master 1 blah blah"); current.setMaster(master); master.setDetail(current); Detail past = new Detail(); past.setCurrentVersion(false); past.setVersion(1); past.setDetails("old details of master 1 yada yada"); past.setMaster(master); s.persist(master); s.persist(past); s.persist(current); tx.commit(); s.close(); if ( getDialect() instanceof PostgreSQLDialect ) return; s = openSession(); tx = s.beginTransaction(); List l = s.createQuery("from Master m left join m.detail d").list(); assertEquals( l.size(), 1 ); tx.commit(); s.close(); s = openSession(); tx = s.beginTransaction(); l = s.createQuery("from Master m left join fetch m.detail").list(); assertEquals( l.size(), 1 ); Master m = (Master) l.get(0); assertEquals( "master 1", m.getDetail().getMaster().getName() ); assertTrue( m==m.getDetail().getMaster() ); tx.commit(); s.close(); s = openSession(); tx = s.beginTransaction(); l = s.createQuery("from Master m join fetch m.detail").list(); assertEquals( l.size(), 1 ); tx.commit(); s.close(); s = openSession(); tx = s.beginTransaction(); l = s.createQuery("from Detail d join fetch d.currentMaster.master").list(); assertEquals( l.size(), 2 ); tx.commit(); s.close(); s = openSession(); tx = s.beginTransaction(); l = s.createQuery("from Detail d join fetch d.currentMaster.master m join fetch m.detail").list(); assertEquals( l.size(), 2 ); s.createQuery("delete from Detail").executeUpdate(); s.createQuery("delete from Master").executeUpdate(); tx.commit(); s.close(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -