EhCache緩存框架怎么在Spring Boot中使用?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
成都服務器托管,創(chuàng)新互聯(lián)提供包括服務器租用、德陽服務器托管、帶寬租用、云主機、機柜租用、主機租用托管、CDN網(wǎng)站加速、域名注冊等業(yè)務的一體化完整服務。電話咨詢:13518219792在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
使用
需要持久化的類需要實現(xiàn)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
寫入硬盤
只要增加
就可以寫入文件,重啟服務數(shù)據(jù)也不會丟失。
看完上述內容,你們掌握EhCache緩存框架怎么在Spring Boot中使用的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!