jeudi 25 juin 2015

How to Setup Jcache with Ecache as Provider in Spring application-context.xml

Spring documentation provides below information.

<bean id="cacheManager"
   class="org.springframework.cache.jcache.JCacheCacheManager"
   p:cache-manager-ref="jCacheManager"/>

<!-- JSR-107 cache manager setup  -->
<bean id="jCacheManager" .../>

I want to know exactly how to configure this jcacheManager bean (with EhCache as provider) in spring application context xml.

I have already configured dependency, as below, in pom.xml which is fine.

<dependency>
    <groupId>org.ehcache</groupId>
    <artifactId>jcache</artifactId>
    <version>1.0.1</version>
    <exclusions>
        <exclusion>
            <artifactId>slf4j-api</artifactId>
            <groupId>org.slf4j</groupId>
        </exclusion>
    </exclusions>
</dependency> 

Aucun commentaire:

Enregistrer un commentaire