Spring Boot Admin是一個Web應用,用于管理和監(jiān)視Spring Boot應用程序的運行狀態(tài)。每個Spring Boot應用程序都被視為客戶端并注冊到管理服務器。背后的數(shù)據(jù)采集是由Spring Boot Actuator端點提供。
公司主營業(yè)務:成都網(wǎng)站制作、做網(wǎng)站、移動網(wǎng)站開發(fā)等業(yè)務。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。成都創(chuàng)新互聯(lián)是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。成都創(chuàng)新互聯(lián)推出惠農(nóng)免費做網(wǎng)站回饋大家。
EhCache 是一個純Java的進程內(nèi)緩存框架,具有快速、精干等特點,是Hibernate中默認的CacheProvider。
Ehcache是一種廣泛使用的開源Java分布式緩存。主要面向通用緩存,Java EE和輕量級容器。它具有內(nèi)存和磁盤存儲,緩存加載器,緩存擴展,緩存異常處理程序,一個gzip緩存servlet過濾器,支持REST和SOAP api等特點。
Ehcache最初是由Greg Luck于2003年開始開發(fā)。2009年,該項目被Terracotta購買。軟件仍然是開源,但一些新的主要功能(例如,快速可重啟性之間的一致性的)只能在商業(yè)產(chǎn)品中使用,例如Enterprise EHCache and BigMemory。,維基媒體Foundationannounced目前使用的就是Ehcache技術。
你所創(chuàng)建的Spring Boot應用程序的maven依賴文件至少應該是下面的樣子:
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應用程序提供緩存支持
- ehcache提供了Ehcache的緩存實現(xiàn)
- cache-api 提供了基于JSR-107的緩存規(guī)范
現(xiàn)在,需要告訴Spring Boot去哪里找緩存配置文件,這需要在Spring Boot配置文件中進行設置:
spring.cache.jcache.config=classpath:ehcache.xml
然后使用@EnableCaching注解開啟Spring Boot應用程序緩存功能,你可以在應用主類中進行操作:
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
要讓Spring Boot能夠緩存我們的數(shù)據(jù),還需要使用@Cacheable注解對業(yè)務方法進行注釋,告訴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的緩存功能。接下來,我們將測試一下緩存的實際情況。
為了測試我們的應用程序,創(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;
}
以上準備工作都完成后,讓我們編譯并運行應用程序。項目成功啟動后,使用瀏覽器打開: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文件中將緩存過期時間設置成了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ù)。
在本次案例中,通過簡單的三個步驟,講解了基于 Ehcache 的 Spring Boot 應用程序緩存實現(xiàn)。