All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.ehcache.annotations.Cacheable Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2010-2011 Nicholas Blair, Eric Dalquist
 *
 * 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 com.googlecode.ehcache.annotations;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import net.sf.ehcache.constructs.blocking.BlockingCache;
import net.sf.ehcache.constructs.blocking.LockTimeoutException;
import net.sf.ehcache.constructs.blocking.SelfPopulatingCache;

import com.googlecode.ehcache.annotations.key.CacheKeyGenerator;
import com.googlecode.ehcache.annotations.resolver.CacheResolverFactory;

/**
 * Annotation for methods whose return values should be cached.
 */
@Target( { ElementType.METHOD } )
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface Cacheable {
    /**
     * The name of the cache to use
     */
    String cacheName();
    
    /**
     * If true null return values will be cached. If false they will not. Defaults to true.
     * NOTE that if {@link #decoratedCacheType()} is set to {@link DecoratedCacheType#SELF_POPULATING_CACHE} or
     * {@link DecoratedCacheType#REFRESHING_SELF_POPULATING_CACHE} this setting is assumed to be true.
     */
    boolean cacheNull() default true;
    
    /**
     * The type of cache decoration to use. Defaults to {@link DecoratedCacheType#NONE}.
     */
    DecoratedCacheType decoratedCacheType() default DecoratedCacheType.NONE;

    /**
     * If a EhCache {@link SelfPopulatingCache} wrapper should be used to ensure only one
     * value per key is created.
     * @deprecated use {@link #decoratedCacheType()}. Ignored if {@link #decoratedCacheType()} is set to anything other than NONE
     */
    @Deprecated
    boolean selfPopulating() default false;
    
    /**
     * Sets the time in ms to wait to acquire a lock. Only used if {@link #decoratedCacheType()} is set to
     * {@link DecoratedCacheType#SELF_POPULATING_CACHE} or {@link DecoratedCacheType#REFRESHING_SELF_POPULATING_CACHE}.
     * 
     * Must be greater than or equal to 0. A value of 0 means wait forever, any positive value means wait for
     * that many milliseconds before throwing a {@link LockTimeoutException}
     *  
     * @see BlockingCache#setTimeoutMillis(int)
     */
    int selfPopulatingTimeout() default 0;
    
    /**
     * Sets the time in ms between cache refreshes. Only used if {@link #decoratedCacheType()} is set to
     * {@link DecoratedCacheType#REFRESHING_SELF_POPULATING_CACHE}. Defaults to 1 minute.
     * 
     * Must be greater than 0.
     * 
     * @see RefreshingSelfPopulatingCache#setRefreshInterval(long)
     */
    long refreshInterval() default 60 * 1000;
    
    /**
     * The Spring Bean name of the {@link CacheKeyGenerator} to use.
     * Ignored if {@link #keyGenerator()} is specified. 
     * If this and {@link #keyGenerator()} are not specified the default generator will be used.
     */
    String keyGeneratorName() default "";
    
    /**
     * The name of the cache to use for storing exceptions thrown by the advised method. If not specified
     * exceptions will result in no caching taking place. 
     */
    String exceptionCacheName() default "";
    
    /**
     * Used the specify and configure the {@link CacheKeyGenerator} to use.
     * If this and {@link #keyGeneratorName()} are not specified the default generator will be used.  
     */
    KeyGenerator keyGenerator() default @KeyGenerator(name = "");
    
    /**
     * The Spring Bean name of the {@link CacheableInterceptor} to use when intercepting invocations.
     */
    String cacheableInteceptorName() default "";
    
    /**
     * The Spring Bean name of the {@link CacheResolverFactory} to use to resolve the correct cache at runtime.
     * Ignored if {@link #resolverFactory()} is specified.
     * If this and {@link #resolverFactory()} are not specified the specified {@link #cacheName()} will be used.
     */
    String resolverFactoryName() default "";
    
    /**
     * Used the specify and configure the {@link CacheResolverFactory} to use.
     * If this and {@link #resolverFactoryName()} are not specified the specified {@link #cacheName()} will be used. 
     */
    ResolverFactory resolverFactory() default @ResolverFactory(name = "");
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy