EhCache緩存框架怎么在Spring Boot中使用?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
澤普網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、APP開發(fā)、響應式網(wǎng)站開發(fā)等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站自2013年創(chuàng)立以來到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設就選創(chuàng)新互聯(lián)建站。
在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è)資訊頻道,感謝各位的閱讀!