Package org.hibernate.cache

Examples of org.hibernate.cache.RegionFactory


  /**
   * Standard constructor.
   */
  public LocalRegionFactoryProxy() {
    RegionFactory rf = (RegionFactory) LocalSessionFactoryBean.getConfigTimeRegionFactory();
    // absolutely needs thread-bound RegionFactory to initialize
    if (rf == null) {
      throw new IllegalStateException("No Hibernate RegionFactory found - " +
          "'cacheRegionFactory' property must be set on LocalSessionFactoryBean");
    }
View Full Code Here

TOP

Related Classes of org.hibernate.cache.RegionFactory

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.