CacheProxyFactoryBean.java 2.8 KB
Newer Older
1
/*
S
Stevo Slavic 已提交
2
 * Copyright 2010-2012 the original author or authors.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *
 * 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;

/**
 * Proxy factory bean for simplified declarative caching handling.
 * This is a convenient alternative to a standard AOP
 * {@link org.springframework.aop.framework.ProxyFactoryBean}
S
Stevo Slavic 已提交
27
 * with a separate {@link CacheInterceptor} definition.
28 29 30 31 32 33 34 35 36 37
 *
 * <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
S
Stephane Nicoll 已提交
38
 * @since 3.1
39
 * @see org.springframework.aop.framework.ProxyFactoryBean
S
Stevo Slavic 已提交
40
 * @see CacheInterceptor
41 42 43 44 45
 */
@SuppressWarnings("serial")
public class CacheProxyFactoryBean extends AbstractSingletonProxyFactoryBean {

	private final CacheInterceptor cachingInterceptor = new CacheInterceptor();
P
Phillip Webb 已提交
46

47 48
	private Pointcut pointcut;

P
Phillip Webb 已提交
49

50 51 52 53 54 55 56 57 58 59 60 61 62 63
	/**
	 * Set a pointcut, i.e a bean that can cause conditional invocation
	 * of the CacheInterceptor depending on method and attributes passed.
	 * Note: Additional interceptors are always invoked.
	 * @see #setPreInterceptors
	 * @see #setPostInterceptors
	 */
	public void setPointcut(Pointcut pointcut) {
		this.pointcut = pointcut;
	}

	@Override
	protected Object createMainInterceptor() {
		this.cachingInterceptor.afterPropertiesSet();
P
Phillip Webb 已提交
64
		if (this.pointcut == null) {
65 66 67
			// Rely on default pointcut.
			throw new UnsupportedOperationException();
		}
P
Phillip Webb 已提交
68
		return new DefaultPointcutAdvisor(this.pointcut, this.cachingInterceptor);
69 70 71
	}

	/**
C
Chris Beams 已提交
72
	 * Set the sources used to find cache operations.
73
	 */
C
Chris Beams 已提交
74 75
	public void setCacheOperationSources(CacheOperationSource... cacheOperationSources) {
		this.cachingInterceptor.setCacheOperationSources(cacheOperationSources);
76 77 78
	}

}