Skip to content
Ben Manes edited this page Mar 31, 2015 · 30 revisions

JSR-107 JCache is a standardized caching API that is Java 6 compatible and introduced in JEE 8. Caffeine provides a local in-memory implementation. The JCache provider is configured using Typesafe's Config library. See the reference.conf for more details.

Annotation support

Spring

See the Spring documentation.

Guice

The JSR provides an integration module that delegates to the default JCache provider.

compile 'org.jsr107.ri:cache-annotations-ri-guice:1.0.0'
Injector injector = Guice.createInjector(new CacheAnnotationsModule());

CDI

The JSR provides an extension that delegates to the default JCache provider.

compile 'org.jsr107.ri:cache-annotations-ri-cdi:1.0.0'

Clone this wiki locally