Spring Boot:簡單使用EhCache快取框架

firefule發表於2021-09-09

我的環境是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) {
    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
寫入硬碟

只要增加就可以寫入檔案,重啟服務資料也不會丟失。

圖片描述

image.png



作者:ImWiki
連結:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1834/viewspace-2805427/,如需轉載,請註明出處,否則將追究法律責任。

相關文章