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

📄 statstest.java

📁 hibernate 开源框架的代码 jar包希望大家能喜欢
💻 JAVA
字号:
//$Id: StatsTest.java 10977 2006-12-12 23:28:04Z steve.ebersole@jboss.com $package org.hibernate.test.stats;import java.util.HashSet;import java.util.Iterator;import junit.framework.Test;import org.hibernate.FetchMode;import org.hibernate.Hibernate;import org.hibernate.ScrollableResults;import org.hibernate.Session;import org.hibernate.SessionFactory;import org.hibernate.Transaction;import org.hibernate.cfg.Configuration;import org.hibernate.cfg.Environment;import org.hibernate.junit.functional.FunctionalTestCase;import org.hibernate.junit.functional.FunctionalTestClassTestSuite;import org.hibernate.mapping.Collection;import org.hibernate.stat.QueryStatistics;import org.hibernate.stat.Statistics;/** * Show the difference between fetch and load * * @author Emmanuel Bernard */public class StatsTest extends FunctionalTestCase {	public StatsTest(String x) {		super(x);	}	public String[] getMappings() {		return new String[] { "stats/Continent.hbm.xml" };	}	public void configure(Configuration cfg) {		super.configure( cfg );		cfg.setProperty( Environment.GENERATE_STATISTICS, "true" );	}	public static Test suite() {		return new FunctionalTestClassTestSuite( StatsTest.class );	}	public void testCollectionFetchVsLoad() throws Exception {		Statistics stats = getSessions().getStatistics();		stats.clear();		Session s = openSession();		Transaction tx = s.beginTransaction();		Continent europe = fillDb(s);		tx.commit();		s.clear();		tx = s.beginTransaction();		assertEquals(0, stats.getCollectionLoadCount() );		assertEquals(0,  stats.getCollectionFetchCount() );		Continent europe2 = (Continent) s.get( Continent.class, europe.getId() );		assertEquals("Lazy true: no collection should be loaded", 0, stats.getCollectionLoadCount() );		assertEquals( 0, stats.getCollectionFetchCount() );		europe2.getCountries().size();		assertEquals( 1, stats.getCollectionLoadCount() );		assertEquals("Explicit fetch of the collection state", 1, stats.getCollectionFetchCount() );		tx.commit();		s.close();		s = openSession();		tx = s.beginTransaction();		stats.clear();		europe = fillDb(s);		tx.commit();		s.clear();		tx = s.beginTransaction();		assertEquals( 0, stats.getCollectionLoadCount() );		assertEquals( 0, stats.getCollectionFetchCount() );		europe2 = (Continent) s.createQuery(				"from " + Continent.class.getName() + " a join fetch a.countries where a.id = " + europe.getId()			).uniqueResult();		assertEquals( 1, stats.getCollectionLoadCount() );		assertEquals( "collection should be loaded in the same query as its parent", 0, stats.getCollectionFetchCount() );		tx.commit();		s.close();		Collection coll = getCfg().getCollectionMapping(Continent.class.getName() + ".countries");		coll.setFetchMode(FetchMode.JOIN);		coll.setLazy(false);		SessionFactory sf = getCfg().buildSessionFactory();		stats = sf.getStatistics();		stats.clear();		stats.setStatisticsEnabled(true);		s = sf.openSession();		tx = s.beginTransaction();		europe = fillDb(s);		tx.commit();		s.clear();		tx = s.beginTransaction();		assertEquals( 0, stats.getCollectionLoadCount() );		assertEquals( 0, stats.getCollectionFetchCount() );		europe2 = (Continent) s.get( Continent.class, europe.getId() );		assertEquals( 1, stats.getCollectionLoadCount() );		assertEquals( "Should do direct load, not indirect second load when lazy false and JOIN", 0, stats.getCollectionFetchCount() );		tx.commit();		s.close();		sf.close();		coll = getCfg().getCollectionMapping(Continent.class.getName() + ".countries");		coll.setFetchMode(FetchMode.SELECT);		coll.setLazy(false);		sf = getCfg().buildSessionFactory();		stats = sf.getStatistics();		stats.clear();		stats.setStatisticsEnabled(true);		s = sf.openSession();		tx = s.beginTransaction();		europe = fillDb(s);		tx.commit();		s.clear();		tx = s.beginTransaction();		assertEquals( 0, stats.getCollectionLoadCount() );		assertEquals( 0, stats.getCollectionFetchCount() );		europe2 = (Continent) s.get( Continent.class, europe.getId() );		assertEquals( 1, stats.getCollectionLoadCount() );		assertEquals( "Should do explicit collection load, not part of the first one", 1, stats.getCollectionFetchCount() );		Iterator countries = europe2.getCountries().iterator();		while ( countries.hasNext() ) {			s.delete( countries.next() );		}		cleanDb( s );		tx.commit();		s.close();	}	public void testQueryStatGathering() {		Statistics stats = getSessions().getStatistics();		stats.clear();		Session s = openSession();		Transaction tx = s.beginTransaction();		fillDb(s);		tx.commit();		s.close();		s = openSession();		tx = s.beginTransaction();		final String continents = "from Continent";		int results = s.createQuery( continents ).list().size();		QueryStatistics continentStats = stats.getQueryStatistics( continents );		assertNotNull( "stats were null",  continentStats );		assertEquals( "unexpected execution count", 1, continentStats.getExecutionCount() );		assertEquals( "unexpected row count", results, continentStats.getExecutionRowCount() );		long maxTime = continentStats.getExecutionMaxTime();		assertEquals( maxTime, stats.getQueryExecutionMaxTime() );//		assertEquals( continents, stats.getQueryExecutionMaxTimeQueryString() );		Iterator itr = s.createQuery( continents ).iterate();		// iterate() should increment the execution count		assertEquals( "unexpected execution count", 2, continentStats.getExecutionCount() );		// but should not effect the cumulative row count		assertEquals( "unexpected row count", results, continentStats.getExecutionRowCount() );		Hibernate.close( itr );		ScrollableResults scrollableResults = s.createQuery( continents ).scroll();		// same deal with scroll()...		assertEquals( "unexpected execution count", 3, continentStats.getExecutionCount() );		assertEquals( "unexpected row count", results, continentStats.getExecutionRowCount() );		scrollableResults.close();		tx.commit();		s.close();		// explicitly check that statistics for "split queries" get collected		// under the original query		stats.clear();		s = openSession();		tx = s.beginTransaction();		final String localities = "from Locality";		results = s.createQuery( localities ).list().size();		QueryStatistics localityStats = stats.getQueryStatistics( localities );		assertNotNull( "stats were null",  localityStats );		// ...one for each split query		assertEquals( "unexpected execution count", 2, localityStats.getExecutionCount() );		assertEquals( "unexpected row count", results, localityStats.getExecutionRowCount() );		maxTime = localityStats.getExecutionMaxTime();		assertEquals( maxTime, stats.getQueryExecutionMaxTime() );//		assertEquals( localities, stats.getQueryExecutionMaxTimeQueryString() );		tx.commit();		s.close();		assertFalse( s.isOpen() );		// native sql queries		stats.clear();		s = openSession();		tx = s.beginTransaction();		final String sql = "select id, name from Country";		results = s.createSQLQuery( sql ).addEntity( Country.class ).list().size();		QueryStatistics sqlStats = stats.getQueryStatistics( sql );		assertNotNull( "sql stats were null", sqlStats );		assertEquals( "unexpected execution count", 1, sqlStats.getExecutionCount() );		assertEquals( "unexpected row count", results, sqlStats.getExecutionRowCount() );		maxTime = sqlStats.getExecutionMaxTime();		assertEquals( maxTime, stats.getQueryExecutionMaxTime() );//		assertEquals( sql, stats.getQueryExecutionMaxTimeQueryString() );		tx.commit();		s.close();		s = openSession();		tx = s.beginTransaction();		cleanDb( s );		tx.commit();		s.close();	}	private Continent fillDb(Session s) {		Continent europe = new Continent();		europe.setName("Europe");		Country france = new Country();		france.setName("France");		europe.setCountries( new HashSet() );		europe.getCountries().add(france);		s.persist(france);		s.persist(europe);		return europe;	}	private void cleanDb(Session s) {		s.createQuery( "delete Locality" ).executeUpdate();		s.createQuery( "delete Country" ).executeUpdate();		s.createQuery( "delete Continent" ).executeUpdate();	}}

⌨️ 快捷键说明

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