Package org.springframework.cache.jcache.interceptor

Examples of org.springframework.cache.jcache.interceptor.BeanFactoryJCacheOperationSourceAdvisor


public class ProxyJCacheConfiguration extends AbstractJCacheConfiguration {

  @Bean(name = CacheManagementConfigUtils.JCACHE_ADVISOR_BEAN_NAME)
  @Role(BeanDefinition.ROLE_INFRASTRUCTURE)
  public BeanFactoryJCacheOperationSourceAdvisor cacheAdvisor() {
    BeanFactoryJCacheOperationSourceAdvisor advisor =
        new BeanFactoryJCacheOperationSourceAdvisor();
    advisor.setCacheOperationSource(cacheOperationSource());
    advisor.setAdvice(cacheInterceptor());
    advisor.setOrder(this.enableCaching.<Integer>getNumber("order"));
    return advisor;
  }
View Full Code Here

TOP

Related Classes of org.springframework.cache.jcache.interceptor.BeanFactoryJCacheOperationSourceAdvisor

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.