Example usage for org.springframework.cache.annotation CachingConfigurerSupport subclass-usage

List of usage examples for org.springframework.cache.annotation CachingConfigurerSupport subclass-usage

Introduction

In this page you can find the example usage for org.springframework.cache.annotation CachingConfigurerSupport subclass-usage.

Usage

From source file com.hp.autonomy.hod.caching.CachingConfiguration.java

@SuppressWarnings({ "WeakerAccess", "SpringJavaAutowiringInspection" })
@ConditionalOnBean(CacheManager.class)
@Configuration
public class CachingConfiguration extends CachingConfigurerSupport {
    public static final String PER_USER_CACHE_RESOLVER_NAME = "perUserCacheResolver";
    public static final String SIMPLE_CACHE_RESOLVER_NAME = "simpleCacheResolver";

From source file org.ikane.config.CacheConfig.java

/**
 *
 * @author andrewserff
 */
@Configuration
@EnableCaching

From source file net.acesinc.util.config.CacheConfig.java

/**
 *
 * @author andrewserff
 */
@Configuration
@EnableCaching

From source file org.jblogcms.core.config.CachingContext.java

/**
 * @author Victor Andreenko
 */
@Configuration
@EnableCaching
public class CachingContext extends CachingConfigurerSupport {

From source file ru.jts_dev.gameserver.config.CacheConfig.java

/**
 * @author Camelion
 * @since 06.01.16
 */
@Configuration
@EnableCaching

From source file com.vcredit.lrh.db.redis.RedisCacheConfiguration.java

/**
 *
 * @author Liu Jianwei
 * @date Aug 23, 2016 2:37:24 PM
 */
@Configuration

From source file org.icgc.dcc.metadata.server.config.CacheConfig.java

/**
 * Server wide caching configuration.
 */
@Lazy
@Configuration
@EnableCaching

From source file org.wallride.autoconfigure.WallRideCacheConfiguration.java

@Configuration
@EnableCaching
public class WallRideCacheConfiguration extends CachingConfigurerSupport {

    public static final String BLOG_CACHE = "blogs";
    public static final String POPULAR_POST_CACHE = "popularPosts";

From source file nu.yona.server.CoreConfiguration.java

@EnableHypermediaSupport(type = HypermediaType.HAL)
@EnableSpringDataWebSupport
@Configuration
public class CoreConfiguration extends CachingConfigurerSupport {
    @Autowired
    private YonaProperties yonaProperties;

From source file com.hp.autonomy.frontend.find.hod.beanconfiguration.HodConfiguration.java

@Configuration
@EnableCaching
public class HodConfiguration extends CachingConfigurerSupport {
    public static final String SSO_PAGE_PROPERTY = "${find.hod.sso:https://www.idolondemand.com/sso.html}";
    public static final String HOD_API_URL_PROPERTY = "${find.iod.api:https://api.havenondemand.com}";
    public static final String SIMPLE_CACHE_RESOLVER_NAME = "simpleCacheResolver";