EhCache缓存框架怎么在Spring Boot中使用?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
泽普网站制作公司哪家好,找创新互联建站!从网页设计、网站建设、微信开发、APP开发、响应式网站开发等网站项目制作,到程序开发,运营维护。创新互联建站自2013年创立以来到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联建站。
在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 // 启动定时器 @EnableScheduling open class MyApplication {} fun main(args: Array) { SpringApplication.run(MyApplication::class.java, *args) }
在resources
添加文件ehcache.xml
使用
需要持久化的类需要实现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
写入硬盘
只要增加
就可以写入文件,重启服务数据也不会丢失。
看完上述内容,你们掌握EhCache缓存框架怎么在Spring Boot中使用的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!
售后响应及时
7×24小时客服热线数据备份
更安全、更高效、更稳定价格公道精准
项目经理精准报价不弄虚作假合作无风险
重合同讲信誉,无效全额退款