Package org.springframework.cache.jcache

Examples of org.springframework.cache.jcache.JCacheCache


      throw new IllegalStateException("Unexpected context " + context);
    }
    CacheInvocationContext<?> cacheInvocationContext = (CacheInvocationContext<?>) context;
    javax.cache.Cache<Object, Object> cache = target.resolveCache(cacheInvocationContext);
    Assert.notNull(cache, "Cannot resolve cache for '" + context + "' using '" + target + "'");
    return Collections.singleton(new JCacheCache(cache));
  }
View Full Code Here

TOP

Related Classes of org.springframework.cache.jcache.JCacheCache

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.