Example usage for org.springframework.cache.concurrent ConcurrentMapCacheManager ConcurrentMapCacheManager

List of usage examples for org.springframework.cache.concurrent ConcurrentMapCacheManager ConcurrentMapCacheManager

Introduction

In this page you can find the example usage for org.springframework.cache.concurrent ConcurrentMapCacheManager ConcurrentMapCacheManager.

Prototype

public ConcurrentMapCacheManager(String... cacheNames) 

Source Link

Document

Construct a static ConcurrentMapCacheManager, managing caches for the specified cache names only.

Usage

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

@Bean
@Override
public CacheManager cacheManager() {
    return new ConcurrentMapCacheManager("html");
}

From source file:br.gov.sibbr.api.Application.java

@Bean
public CacheManager cacheManager() {
    return new ConcurrentMapCacheManager(CACHEABLE_CALLS);
}