真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

EhCache緩存框架怎么在SpringBoot中使用-創(chuàng)新互聯(lián)

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中使用

看完上述內容,你們掌握EhCache緩存框架怎么在Spring Boot中使用的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站題目:EhCache緩存框架怎么在SpringBoot中使用-創(chuàng)新互聯(lián)
網(wǎng)頁URL:http://weahome.cn/article/gicoh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部