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

com.alicp.jetcache.anno.config.EnableCreateCacheAnnotation Maven / Gradle / Ivy

The newest version!
package com.alicp.jetcache.anno.config;

/**
 * Created on 2016/12/13.
 *
 * @deprecated CreateCache annotation is replaced by CacheManager.getOrCreateCache(QuickConfig), the CacheManager instance
 *             can be injected use annotation such as @Autowired.
 *
 * @author huangli
 */

import com.alicp.jetcache.anno.field.CreateCacheAnnotationBeanPostProcessor;
import org.springframework.context.annotation.Import;

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

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Import({CommonConfiguration.class, CreateCacheAnnotationBeanPostProcessor.class})
@Deprecated
public @interface EnableCreateCacheAnnotation {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy