/*
 * Copyright 2002-2018 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.cache.interceptor;

import org.springframework.aop.Pointcut;
import org.springframework.aop.framework.AbstractSingletonProxyFactoryBean;
import org.springframework.aop.support.DefaultPointcutAdvisor;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.BeanFactoryAware;
import org.springframework.beans.factory.SmartInitializingSingleton;
import org.springframework.cache.CacheManager;

Proxy factory bean for simplified declarative caching handling. This is a convenient alternative to a standard AOP ProxyFactoryBean with a separate CacheInterceptor definition.

This class is designed to facilitate declarative cache demarcation: namely, wrapping a singleton target object with a caching proxy, proxying all the interfaces that the target implements. Exists primarily for third-party framework integration. Users should favor the cache: XML namespace @Cacheable annotation. See the declarative annotation-based caching section of the Spring reference documentation for more information.

Author:Costin Leau, Juergen Hoeller
See Also:
Since:3.1
/** * Proxy factory bean for simplified declarative caching handling. * This is a convenient alternative to a standard AOP * {@link org.springframework.aop.framework.ProxyFactoryBean} * with a separate {@link CacheInterceptor} definition. * * <p>This class is designed to facilitate declarative cache demarcation: namely, wrapping * a singleton target object with a caching proxy, proxying all the interfaces that the * target implements. Exists primarily for third-party framework integration. * <strong>Users should favor the {@code cache:} XML namespace * {@link org.springframework.cache.annotation.Cacheable @Cacheable} annotation.</strong> * See the <a href="http://bit.ly/p9rIvx">declarative annotation-based caching</a> section * of the Spring reference documentation for more information. * * @author Costin Leau * @author Juergen Hoeller * @since 3.1 * @see org.springframework.aop.framework.ProxyFactoryBean * @see CacheInterceptor */
@SuppressWarnings("serial") public class CacheProxyFactoryBean extends AbstractSingletonProxyFactoryBean implements BeanFactoryAware, SmartInitializingSingleton { private final CacheInterceptor cacheInterceptor = new CacheInterceptor(); private Pointcut pointcut = Pointcut.TRUE;
Set one or more sources to find cache operations.
See Also:
  • setCacheOperationSources.setCacheOperationSources
/** * Set one or more sources to find cache operations. * @see CacheInterceptor#setCacheOperationSources */
public void setCacheOperationSources(CacheOperationSource... cacheOperationSources) { this.cacheInterceptor.setCacheOperationSources(cacheOperationSources); }
Set the default KeyGenerator that this cache aspect should delegate to if no specific key generator has been set for the operation.

The default is a SimpleKeyGenerator.

See Also:
Since:5.0.3
/** * Set the default {@link KeyGenerator} that this cache aspect should delegate to * if no specific key generator has been set for the operation. * <p>The default is a {@link SimpleKeyGenerator}. * @since 5.0.3 * @see CacheInterceptor#setKeyGenerator */
public void setKeyGenerator(KeyGenerator keyGenerator) { this.cacheInterceptor.setKeyGenerator(keyGenerator); }
Set the default CacheResolver that this cache aspect should delegate to if no specific cache resolver has been set for the operation.

The default resolver resolves the caches against their names and the default cache manager.

See Also:
Since:5.0.3
/** * Set the default {@link CacheResolver} that this cache aspect should delegate * to if no specific cache resolver has been set for the operation. * <p>The default resolver resolves the caches against their names and the * default cache manager. * @since 5.0.3 * @see CacheInterceptor#setCacheResolver */
public void setCacheResolver(CacheResolver cacheResolver) { this.cacheInterceptor.setCacheResolver(cacheResolver); }
Set the CacheManager to use to create a default CacheResolver. Replace the current CacheResolver, if any.
See Also:
Since:5.0.3
/** * Set the {@link CacheManager} to use to create a default {@link CacheResolver}. * Replace the current {@link CacheResolver}, if any. * @since 5.0.3 * @see CacheInterceptor#setCacheManager */
public void setCacheManager(CacheManager cacheManager) { this.cacheInterceptor.setCacheManager(cacheManager); }
Set a pointcut, i.e. a bean that triggers conditional invocation of the CacheInterceptor depending on the method and attributes passed.

Note: Additional interceptors are always invoked.

See Also:
/** * Set a pointcut, i.e. a bean that triggers conditional invocation of the * {@link CacheInterceptor} depending on the method and attributes passed. * <p>Note: Additional interceptors are always invoked. * @see #setPreInterceptors * @see #setPostInterceptors */
public void setPointcut(Pointcut pointcut) { this.pointcut = pointcut; } @Override public void setBeanFactory(BeanFactory beanFactory) { this.cacheInterceptor.setBeanFactory(beanFactory); } @Override public void afterSingletonsInstantiated() { this.cacheInterceptor.afterSingletonsInstantiated(); } @Override protected Object createMainInterceptor() { this.cacheInterceptor.afterPropertiesSet(); return new DefaultPointcutAdvisor(this.pointcut, this.cacheInterceptor); } }