Spring Boot 简单使用EhCache缓存框架的方法
程序员文章站
2024-02-14 12:34:28
我的环境是gradle + kotlin + spring boot,这里介绍ehcache缓存框架在spring boot上的简单应用。
在build.gradle文件...
我的环境是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 // 启动定时器 @enablescheduling open 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"/>
就可以写入文件,重启服务数据也不会丢失。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: C#实现协同过滤算法的实例代码
下一篇: C#操作config文件的具体方法
推荐阅读
-
Spring Boot 简单使用EhCache缓存框架的方法
-
Spring Boot使用Value注解给静态变量赋值的方法
-
spring boot中内嵌redis的使用方法示例
-
使用dubbo+zookeeper+spring boot构建服务的方法详解
-
使用netbeans搭建jsf+spring框架的方法
-
Spring Boot中使用Spring-data-jpa的配置方法详解
-
使用Docker部署Spring Boot的方法示例
-
使用docker部署spring boot并接入skywalking的方法
-
MongoDB最简单的入门教程之四:使用Spring Boot操作MongoDB
-
使用Redis作为Spring Boot的缓存管理器步骤