Spring Boot 简单使用EhCache缓存框架的方法

时间:2021-05-20

我的环境是Gradle + Kotlin + Spring Boot,这里介绍EhCache缓存框架在Spring Boot上的简单应用。

在build.gradle文件添加依赖

compile("org.springframework.boot:spring-boot-starter-cache")compile("net.sf.ehcache:ehcache")

修改Application的配置,增加@EnableCaching配置

@MapperScan("com.xxx.xxx.dao")@SpringBootApplication(scanBasePackages= arrayOf("com.xxx.xxx"))// 启用缓存注解@EnableCaching// 启动定时器@EnableSchedulingopen class MyApplication {}fun main(args: Array<String>) { SpringApplication.run(MyApplication::class.java, *args)}

在resources添加文件ehcache.xml

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd"> <diskStore path="myCache.ehcache"/> <defaultCache maxElementsInMemory="100" eternal="true" overflowToDisk="true"/> <cache name="userCache" maxElementsInMemory="10" eternal="false" timeToIdleSeconds="0" timeToLiveSeconds="0" overflowToDisk="true" maxElementsOnDisk="20" diskPersistent="true" diskExpiryThreadIntervalSeconds="120" memoryStoreEvictionPolicy="LRU"/></ehcache>

使用

需要持久化的类需要实现Serializable序列化接口,不然无法写入硬盘

class User : Serializable { var id: Int = 0 var name: String? = null constructor() constructor(id: Int, name: String?) { this.id = id this.name = name }}// 获取缓存实例val userCache = CacheManager.getInstance().getCache("userCache")// 写入缓存val element = Element("1000", User(1000,"Wiki"))userCache.put(element)// 读取缓存val user = userCache.get("1000").objectValue as User

写入硬盘

只要增加<diskStore path="myCache.ehcache"/>就可以写入文件,重启服务数据也不会丢失。


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章