Example usage for org.springframework.security.core.userdetails.cache SpringCacheBasedUserCache SpringCacheBasedUserCache

List of usage examples for org.springframework.security.core.userdetails.cache SpringCacheBasedUserCache SpringCacheBasedUserCache

Introduction

In this page you can find the example usage for org.springframework.security.core.userdetails.cache SpringCacheBasedUserCache SpringCacheBasedUserCache.

Prototype

public SpringCacheBasedUserCache(Cache cache) throws Exception 

Source Link

Usage

From source file:com.wiiyaya.consumer.web.initializer.config.SecurityConfig.java

@Bean
public UserCache userCache() throws Exception {
    SpringCacheBasedUserCache userCache = new SpringCacheBasedUserCache(new ConcurrentMapCache("userCache"));
    return userCache;
}