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

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

SpringBoot中怎么集成Ehcache緩存

本篇文章為大家展示了Spring Boot中怎么集成Ehcache緩存,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

曲周網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)公司!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)公司于2013年開始到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)公司

1. 創(chuàng)建一個Spring Boot工程

你所創(chuàng)建的Spring Boot應(yīng)用程序的maven依賴文件至少應(yīng)該是下面的樣子:



 4.0.0
 
  org.springframework.boot
  spring-boot-starter-parent
  2.1.3.RELEASE
   
 
 com.ramostear
 cache
 0.0.1-SNAPSHOT
 cache
 Demo project for Spring Boot

 
  1.8
 

 
  
   org.springframework.boot
   spring-boot-starter-cache
  
  
   org.springframework.boot
   spring-boot-starter-web
  
  
   org.ehcache
   ehcache
  
  
   javax.cache
   cache-api
  
  
   org.springframework.boot
   spring-boot-starter-test
   test
  
  
   org.projectlombok
   lombok
  
 

 
  
   
    org.springframework.boot
    spring-boot-maven-plugin
   
  
 

依賴說明:

  • spring-boot-starter-cache為Spring Boot應(yīng)用程序提供緩存支持

  • ehcache提供了Ehcache的緩存實現(xiàn)

  • cache-api 提供了基于JSR-107的緩存規(guī)范

2. 配置Ehcache緩存

現(xiàn)在,需要告訴Spring Boot去哪里找緩存配置文件,這需要在Spring Boot配置文件中進行設(shè)置:

spring.cache.jcache.config=classpath:ehcache.xml

然后使用@EnableCaching注解開啟Spring Boot應(yīng)用程序緩存功能,你可以在應(yīng)用主類中進行操作:

package com.ramostear.cache;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;

@SpringBootApplication
@EnableCaching
public class CacheApplication {

 public static void main(String[] args) {
  SpringApplication.run(CacheApplication.class, args);
 }
}

接下來,需要創(chuàng)建一個 ehcache 的配置文件,該文件放置在類路徑下,如resources目錄下:


  
    
  

  
    java.lang.Long
    com.ramostear.cache.entity.Person
    
      1
    
    
      
        com.ramostear.cache.config.PersonCacheEventLogger
        ASYNCHRONOUS
        UNORDERED
        CREATED
        UPDATED
        EXPIRED
        REMOVED
        EVICTED
      
    
    
        2000
        100
    
  

最后,還需要定義個緩存事件監(jiān)聽器,用于記錄系統(tǒng)操作緩存數(shù)據(jù)的情況,最快的方法是實現(xiàn)CacheEventListener接口:

package com.ramostear.cache.config;

import org.ehcache.event.CacheEvent;
import org.ehcache.event.CacheEventListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * @author ramostear
 * @create-time 2019/4/7 0007-0:48
 * @modify by :
 * @since:
 */
public class PersonCacheEventLogger implements CacheEventListener{

  private static final Logger logger = LoggerFactory.getLogger(PersonCacheEventLogger.class);

  @Override
  public void onEvent(CacheEvent cacheEvent) {
    logger.info("person caching event {} {} {} {}",
        cacheEvent.getType(),
        cacheEvent.getKey(),
        cacheEvent.getOldValue(),
        cacheEvent.getNewValue());
  }
}

3. 使用@Cacheable注解

要讓Spring Boot能夠緩存我們的數(shù)據(jù),還需要使用@Cacheable注解對業(yè)務(wù)方法進行注釋,告訴Spring Boot該方法中產(chǎn)生的數(shù)據(jù)需要加入到緩存中:

package com.ramostear.cache.service;

import com.ramostear.cache.entity.Person;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;

/**
 * @author ramostear
 * @create-time 2019/4/7 0007-0:51
 * @modify by :
 * @since:
 */
@Service(value = "personService")
public class PersonService {

  @Cacheable(cacheNames = "person",key = "#id")
  public Person getPerson(Long id){
    Person person = new Person(id,"ramostear","ramostear@163.com");
    return person;
  }
}

通過以上三個步驟,我們就完成了Spring Boot的緩存功能。接下來,我們將測試一下緩存的實際情況。

4. 緩存測試

為了測試我們的應(yīng)用程序,創(chuàng)建一個簡單的Restful端點,它將調(diào)用PersonService返回一個Person對象:

package com.ramostear.cache.controller;

import com.ramostear.cache.entity.Person;
import com.ramostear.cache.service.PersonService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author ramostear
 * @create-time 2019/4/7 0007-0:54
 * @modify by :
 * @since:
 */
@RestController
@RequestMapping("/persons")
public class PersonController {

  @Autowired
  private PersonService personService;

  @GetMapping("/{id}")
  public ResponseEntity person(@PathVariable(value = "id") Long id){
    return new ResponseEntity<>(personService.getPerson(id), HttpStatus.OK);
  }
}

Person是一個簡單的POJO類:

package com.ramostear.cache.entity;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

import java.io.Serializable;

/**
 * @author ramostear
 * @create-time 2019/4/7 0007-0:45
 * @modify by :
 * @since:
 */
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class Person implements Serializable{

  private Long id;

  private String username;

  private String email;
}

以上準備工作都完成后,讓我們編譯并運行應(yīng)用程序。項目成功啟動后,使用瀏覽器打開:http://localhost:8080/persons/1 ,你將在瀏覽器頁面中看到如下的信息:

{"id":1,"username":"ramostear","email":ramostear@163.com}

此時在觀察控制臺輸出的日志信息:

1. 2019-04-07 01:08:01.001 INFO 6704 --- [nio-8080-exec-1] 
o.s.web.servlet.DispatcherServlet    : Completed 
initialization in 5 ms
2. 2019-04-07 01:08:01.054 INFO 6704 --- [e [_default_]-0] 
c.r.cache.config.PersonCacheEventLogger : person caching event 
CREATED 1 null com.ramostear.cache.entity.Person@ba8a729

由于我們是第一次請求API,沒有任何緩存數(shù)據(jù)。因此,Ehcache創(chuàng)建了一條緩存數(shù)據(jù),可以通過CREATED看一了解到。

我們在ehcache.xml文件中將緩存過期時間設(shè)置成了1分鐘(1),因此在一分鐘之內(nèi)我們刷新瀏覽器,不會看到有新的日志輸出,一分鐘之后,緩存過期,我們再次刷新瀏覽器,將看到如下的日志輸出:

1. 2019-04-07 01:09:28.612 INFO 6704 --- [e [_default_]-1]
c.r.cache.config.PersonCacheEventLogger : person caching event
EXPIRED 1 com.ramostear.cache.entity.Person@a9f3c57 null
2. 2019-04-07 01:09:28.612 INFO 6704 --- [e [_default_]-1]
c.r.cache.config.PersonCacheEventLogger : person caching event
CREATED 1 null com.ramostear.cache.entity.Person@416900ce
第一條日志提示緩存已經(jīng)過期,第二條日志提示Ehcache重新創(chuàng)建了一條緩存數(shù)據(jù)。

上述內(nèi)容就是Spring Boot中怎么集成Ehcache緩存,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享標題:SpringBoot中怎么集成Ehcache緩存
網(wǎng)頁路徑:http://weahome.cn/article/gejgcc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部