Package org.g4studio.core.resource.cache

Examples of org.g4studio.core.resource.cache.MemoryCache


   */
  private Cache createCache() throws ConfigeException {
    String cacheName = properites.getProperty(CACHE_KEY);
    if (isEmpty(cacheName)) {
      logger.info("没有发现cache配置,采用默认的MemoryCache");
      return new MemoryCache();
    }
    return (Cache) this.createObject(cacheName + ".", Cache.class);
  }
View Full Code Here

TOP

Related Classes of org.g4studio.core.resource.cache.MemoryCache

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.