Package com.skyline.energy.executor.impl

Examples of com.skyline.energy.executor.impl.CacheExecutor


  public static DataAccessExecutor getExecutor(CacheManager cacheManager, JdbcDataAccessor dataAccessor, Method method)
      throws DaoGenerateException {
    DataAccessExecutor executor = EXECUTOR_CACHE.get(method);

    if (executor == null) {
      CacheExecutor cacheExecutor = createCacheExecutor(cacheManager, method);
      SqlExecutor sqlExecutor = createSqlExecutor(dataAccessor, method);
     
      cacheExecutor.setDataAccessExecutor(sqlExecutor);
      executor = cacheExecutor;
     
      EXECUTOR_CACHE.put(method, executor);
    }
View Full Code Here


  }

  private static CacheExecutor createCacheExecutor(CacheManager cacheManager, Method method)
      throws DaoGenerateException {
    CacheExecutor executor = new CacheExecutor(cacheManager, method);

    return executor;
  }
View Full Code Here

TOP

Related Classes of com.skyline.energy.executor.impl.CacheExecutor

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.