企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
第一步:定义一个ehcache.xml <?xml version=”1.0” encoding=”utf-8”> <ehcache> <defaultCache maxEntriesLocalHeap=”100” eternal=”false” timeToIdleSeconds = “120” maxEntriesLocalDisk=”100000” diskExpiryThreadIntervalSeconds=”120” memoryStoreEvictionPolicy=”LRU” > <persistence strategy=”localTempSwap”> </defalutCache> <cache name="HelloWorldCache" maxElementsInMemory="1000" eternal="false" timeToIdleSeconds="5" timeToLiveSeconds="5" overflowToDisk="false" memoryStoreEvictionPolicy="LRU"/> </ehcache> </ehcache> 第二步:导入依赖 <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <version>2.10.2</version> </dependency> 第三步: @Configuration @PropertySource(value={“classpath:application.properties”},encoding=”utf-8”) 定义一个类 在类里面添加一个方法 @Bean Public CacheManger getCacheManger(){ ClassPathResource classPathResource = new ClassPathResource(“ehcache,xml”) Try{ cacheManger = CacheManger.create(classPathResource.getInputStream) }catch(Exception e){ } return cacheManger } 第四步: //封装cache方法 // 1. 创建缓存管理器 CacheManager cacheManager = CacheManager.create("./src/main/resources/ehcache.xml"); // 2. 获取缓存对象 Cache cache = cacheManager.getCache("HelloWorldCache"); // 3. 创建元素 Element element = new Element("key1", "value1"); // 4. 将元素添加到缓存 cache.put(element); // 5. 获取缓存 Element value = cache.get("key1"); System.out.println(value); System.out.println(value.getObjectValue()); // 6. 删除元素 cache.remove("key1"); Dog dog = new Dog(1L, "taidi", (short)2); Element element2 = new Element("taidi", dog); cache.put(element2); Element value2 = cache.get("taidi"); Dog dog2 = (Dog) value2.getObjectValue(); System.out.println(dog2); System.out.println(cache.getSize()); // 7. 刷新缓存 cache.flush(); // 8. 关闭缓存管理器 cacheManager.shutdown();