Ehcache bonjour l'exemple du monde

Dans ce tutoriel, nous allons vous montrer deux exemples pour vous aider à démarrer avecEhcache.
Les outils utilisés :
-
Ehcache 2.9
-
Maven 3
-
Gradle 2
-
JDK 1.7
P.S Ehcache required JDK 1.5 or above.
1. Structure du répertoire du projet

2. Bonjour le monde
Supposons que ce soit un projet Maven:
pom.xml
net.sf.ehcache ehcache 2.9.0
Lisez les commentaires pour s'expliquer d'eux-mêmes.
HelloEhCache.java
package com.example.cache;
import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;
public class HelloEhCache{
public static void main(String[] args) {
//1. Create a cache manager
CacheManager cm = CacheManager.getInstance();
//2. Create a cache called "cache1"
cm.addCache("cache1");
//3. Get a cache called "cache1"
Cache cache = cm.getCache("cache1");
//4. Put few elements in cache
cache.put(new Element("1","Jan"));
cache.put(new Element("2","Feb"));
cache.put(new Element("3","Mar"));
//5. Get element from cache
Element ele = cache.get("1");
//6. Print out the element
String output = (ele == null ? null : ele.getObjectValue().toString());
System.out.println(output);
//7. Is key in cache?
System.out.println(cache.isKeyInCache("1"));
System.out.println(cache.isKeyInCache("5"));
//8. shut down the cache manager
cm.shutdown();
}
}
Sortie
06:03:37.007 [main] WARN n.s.e.config.ConfigurationFactory - No configuration found.
Configuring ehcache from ehcache-failsafe.xml found in the classpath:
//...
Jan
true
false
//...
Note
Plus d'informations sur les API, reportez-vous à cePerforming Basic Cache Operations
Note
Le framework Ehcache peut être configuré via le fichierehcache.xml, si ce fichier n'est pas disponible, unehcache-failsafe.xml par défaut sera utilisé.
2. Configuration d'Ehcache
Dans cet exemple, nous allons vous montrer comment configurer Ehcache via un fichierehcache.xml.
Supposons que ce soit un projet Gradle:
gradle.build
apply plugin: 'java'
apply plugin: 'eclipse-wtp'
version = '1.0'
// Uses JDK 7
sourceCompatibility = 1.7
targetCompatibility = 1.7
// Get dependencies from Maven central repository
repositories {
mavenCentral()
}
//Project dependencies
dependencies {
compile 'net.sf.ehcache:ehcache:2.9.0'
}
Créez unehcache.xml et placez-le dans le dossiersrc/main/resources.
src/main/resources/ehcache.xml
Pour en savoir plus, lisez cet exemple officiel deehcache.xml.
HelloEhCache.java
package com.example.cache;
import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import net.sf.ehcache.Element;
public class HelloEhCache{
public static void main(String[] args) {
//1. Create a cache manager
CacheManager cm = CacheManager.newInstance();
//cm.addCache("cache1");
//2. Get a cache called "cache1", declared in ehcache.xml
Cache cache = cm.getCache("cache1");
//3. Put few elements in cache
cache.put(new Element("1","Jan"));
cache.put(new Element("2","Feb"));
cache.put(new Element("3","Mar"));
//4. Get element from cache
Element ele = cache.get("2");
//5. Print out the element
String output = (ele == null ? null : ele.getObjectValue().toString());
System.out.println(output);
//6. Is key in cache?
System.out.println(cache.isKeyInCache("3"));
System.out.println(cache.isKeyInCache("10"));
//7. shut down the cache manager
cm.shutdown();
}
}
Sortie
06:45:56.294 [main] DEBUG n.s.e.config.ConfigurationFactory - Configuring ehcache from ehcache.xml found in the classpath: file:/C:/Users/example/workspace2/JavaCache/target/classes/ehcache.xml //... Feb true false //...
Note
Plus d'informations surLoading a Configuration
Télécharger le code source
Téléchargez-le -Java-Ehcache-HelloWorld-Example.zip (11 Ko)