Example usage for org.springframework.cache.interceptor SimpleKeyGenerator SimpleKeyGenerator

List of usage examples for org.springframework.cache.interceptor SimpleKeyGenerator SimpleKeyGenerator

Introduction

In this page you can find the example usage for org.springframework.cache.interceptor SimpleKeyGenerator SimpleKeyGenerator.

Prototype

SimpleKeyGenerator

Source Link

Usage

From source file:com.stratio.decision.shell.configuration.CacheConfiguration.java

@Override
@Bean
public KeyGenerator keyGenerator() {
    return new SimpleKeyGenerator();
}

From source file:com.rakesh.rp3599.config.CachingContext.java

public KeyGenerator keyGenerator() {
    return new SimpleKeyGenerator();
}

From source file:com.coffeebeans.services.config.caching.CachingConfig.java

@Bean
@Override
public KeyGenerator keyGenerator() {
    return new SimpleKeyGenerator();
}

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

@Override
public KeyGenerator keyGenerator() {
    return new SimpleKeyGenerator();
}