Registry / utility / jsr107cache

jsr107cache

JSON →
library1.1javamavenunverified

JSR 107 (JCache) provides a standard caching API for Java, enabling temporary data storage and retrieval.

<dependency> <groupId>net.sf.jsr107cache</groupId> <artifactId>jsr107cache</artifactId> <version>1.1</version> </dependency>
INSTALL
IMPORT
SIG · JSR107CACHE
J
jsr107cache
utilityjavav1.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Cache
javax.cache.Cache

Creates and uses a JCache instance.

import javax.cache.Cache; import javax.cache.Caching; import javax.cache.spi.CachingProvider; CachingProvider provider = Caching.getCachingProvider(); CacheManager manager = provider.getCacheManager(); Cache<Integer, String> cache = manager.createCache("myCache", new MutableConfiguration<>()); cache.put(1, "value"); System.out.println(cache.get(1));
Debug
Known issues
gotchaJSR 107 is a specification; ensure a compatible implementation (e.g., Ehcache, Hazelcast) is on the classpath.
fix
Add a JCache implementation dependency like org.ehcache:ehcache.
affects: all
Upgrade
Version history
1.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
jsr107cache — mvn dependency:get jsr107cache · libregistry