Package org.hibernate.stat

Examples of org.hibernate.stat.CollectionStatistics


    container.getContents().add( c1 );
    session.save( container );
    session.getTransaction().commit();
    session.close();

    CollectionStatistics stats =  sfi().getStatistics().getCollectionStatistics( Container.class.getName() + ".contents" );
    long recreateCount = stats.getRecreateCount();
    long updateCount = stats.getUpdateCount();

    container.setName( "another name" );

    session = openSession();
    session.beginTransaction();
    container = ( Container ) session.merge( container );
    session.getTransaction().commit();
    session.close();

    assertEquals( 1, container.getContents().size() );
    assertEquals( recreateCount, stats.getRecreateCount() );
    assertEquals( updateCount, stats.getUpdateCount() );

    session = openSession();
    session.beginTransaction();
    container = ( Container ) session.get( Container.class, container.getId() );
    assertEquals( 1, container.getContents().size() );
View Full Code Here


    container.getContents().add( c1 );
    session.save( container );
    session.getTransaction().commit();
    session.close();

    CollectionStatistics stats =  sfi().getStatistics().getCollectionStatistics( Container.class.getName() + ".contents" );
    long recreateCount = stats.getRecreateCount();
    long updateCount = stats.getUpdateCount();

    session = openSession();
    session.beginTransaction();
    container = ( Container ) session.get( Container.class, container.getId() );
    assertEquals( 1, container.getContents().size() );
    session.getTransaction().commit();
    session.close();

    assertEquals( 1, container.getContents().size() );
    assertEquals( recreateCount, stats.getRecreateCount() );
    assertEquals( updateCount, stats.getUpdateCount() );

    session = openSession();
    session.beginTransaction();
    container = ( Container ) session.get( Container.class, container.getId() );
    assertEquals( 1, container.getContents().size() );
View Full Code Here

TOP

Related Classes of org.hibernate.stat.CollectionStatistics

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.