溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

數(shù)據(jù)緩存如何在Spring Boot中使用

發(fā)布時間:2020-11-17 15:02:54 來源:億速云 閱讀:136 作者:Leah 欄目:編程語言

數(shù)據(jù)緩存如何在Spring Boot中使用?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

在實際開發(fā)中,對于要反復讀寫的數(shù)據(jù),最好的處理方式是將之在內(nèi)存中緩存一份,頻繁的數(shù)據(jù)庫訪問會造成程序效率低下,同時內(nèi)存的讀寫速度本身就要強于硬盤。Spring在這一方面給我們提供了諸多的處理手段,而Spring Boot又將這些處理方式進一步簡化,接下來我們就來看看如何在Spring Boot中解決數(shù)據(jù)緩存問題。

創(chuàng)建Project并添加數(shù)據(jù)庫驅(qū)動

Spring Boot的創(chuàng)建方式還是和我們前文提到的創(chuàng)建方式一樣,不同的是這里選擇添加的依賴不同,這里我們添加Web、Cache和JPA依賴,如下圖:

數(shù)據(jù)緩存如何在Spring Boot中使用 

創(chuàng)建成功之后,接下來添加數(shù)據(jù)庫驅(qū)動,我還是使用MySQL,在pom.xml中添加數(shù)據(jù)庫驅(qū)動,如下:

<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
  <version>5.1.40</version>
 </dependency>

配置application.properties

這個application.properties的配置還是和初識在Spring Boot中使用JPA一樣,各個參數(shù)的含義我這里也不再贅述,我們直接來看代碼:

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/sang&#63;useUnicode=true&characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=sang

spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
spring.jackson.serialization.indent_output=true

創(chuàng)建實體類

@Entity
public class Person {
 @Id
 @GeneratedValue
 private Long id;
 private String name;
 private String address;
 private Integer age;

 public Person() {
 }

 public Long getId() {
 return id;
 }

 public void setId(Long id) {
 this.id = id;
 }

 public String getName() {
 return name;
 }

 public void setName(String name) {
 this.name = name;
 }

 public String getAddress() {
 return address;
 }

 public void setAddress(String address) {
 this.address = address;
 }

 public Integer getAge() {
 return age;
 }

 public void setAge(Integer age) {
 this.age = age;
 }

 public Person(Long id, String name, String address, Integer age) {
 this.id = id;
 this.name = name;
 this.address = address;
 this.age = age;
 }
}

創(chuàng)建實體類的Repository

public interface PersonRepository extends JpaRepository<Person,Long> {}

創(chuàng)建業(yè)務類

業(yè)務接口

public interface DemoService {
 public Person save(Person person);

 public void remove(Long id);

 public Person findOne(Person person);
}

實現(xiàn)類

@Service
public class DemoServiceImpl implements DemoService {
 @Autowired
 PersonRepository personRepository;

 @CachePut(value = "people", key = "#person.id")
 @Override
 public Person save(Person person) {
 Person p = personRepository.save(person);
 System.out.println("為id、key為" + p.getId() + "數(shù)據(jù)做了緩存");
 return p;
 }

 @CacheEvict(value = "people")
 @Override
 public void remove(Long id) {
 System.out.println("刪除了id、key為" + id + "的數(shù)據(jù)緩存");
 personRepository.delete(id);
 }

 @Cacheable(value = "people", key = "#person.id")
 @Override
 public Person findOne(Person person) {
 Person p = personRepository.findOne(person.getId());
 System.out.println("為id、key為" + p.getId() + "數(shù)據(jù)做了緩存");
 return p;
 }
}@Service
public class DemoServiceImpl implements DemoService {
 @Autowired
 PersonRepository personRepository;

 @CachePut(value = "people", key = "#person.id")
 @Override
 public Person save(Person person) {
 Person p = personRepository.save(person);
 System.out.println("為id、key為" + p.getId() + "數(shù)據(jù)做了緩存");
 return p;
 }

 @CacheEvict(value = "people")
 @Override
 public void remove(Long id) {
 System.out.println("刪除了id、key為" + id + "的數(shù)據(jù)緩存");
 personRepository.delete(id);
 }

 @Cacheable(value = "people", key = "#person.id")
 @Override
 public Person findOne(Person person) {
 Person p = personRepository.findOne(person.getId());
 System.out.println("為id、key為" + p.getId() + "數(shù)據(jù)做了緩存");
 return p;
 }
}

關于這個實現(xiàn)類我說如下幾點:

1.@CachePut表示緩存新添加的數(shù)據(jù)或者更新的數(shù)據(jù)到緩存中,兩個參數(shù)value表示緩存的名稱為people,key表示緩存的key為person的id

2.@CacheEvict表示從緩存people中刪除key為id的數(shù)據(jù)

3.@Cacheable表示添加數(shù)據(jù)到緩存中,緩存名稱為people,緩存key為person的id屬性。

創(chuàng)建Controller

@RestController
public class CacheController {
 @Autowired
 DemoService demoService;

 @RequestMapping("/put")
 public Person put(Person person) {
 return demoService.save(person);
 }

 @RequestMapping("/able")
 public Person cacheable(Person person) {
 return demoService.findOne(person);
 }

 @RequestMapping("/evit")
 public String evit(Long id) {
 demoService.remove(id);
 return "ok";
 }
}

OK ,做完這一切我們就可以來測試我們剛剛寫的緩存了。

測試

看我們的Controller,我們有三個地址要測試,一個一個來。當然,在 測試之前,我們先來看看初始狀態(tài)下的數(shù)據(jù)庫是什么樣子的:

數(shù)據(jù)緩存如何在Spring Boot中使用

首先我們在瀏覽器中訪問http://localhost:8080/able&#63;id=1,得到如下訪問結(jié)果:

數(shù)據(jù)緩存如何在Spring Boot中使用 

這個時候查看控制臺,輸出內(nèi)容如下:

數(shù)據(jù)緩存如何在Spring Boot中使用 

說是數(shù)據(jù)已經(jīng)被緩存了,這個時候我們再繼續(xù)在瀏覽器中刷新繼續(xù)請求id為1的數(shù)據(jù),會發(fā)現(xiàn)控制臺不會繼續(xù)打印日志出來,就是因為數(shù)據(jù)已被存于緩存之中了。

接下來我們向瀏覽器中輸入http://localhost:8080/put&#63;age=47&name=奧巴牛&address=米國,訪問結(jié)果如下:

數(shù)據(jù)緩存如何在Spring Boot中使用 

這個時候查看控制臺打印的日志如下:

數(shù)據(jù)緩存如何在Spring Boot中使用 

再查看數(shù)據(jù)表,數(shù)據(jù)已插入成功:

數(shù)據(jù)緩存如何在Spring Boot中使用 

此時,我們在瀏覽器中輸入http://localhost:8080/able&#63;id=106,訪問剛剛插入的這條數(shù)據(jù),結(jié)果如下:

數(shù)據(jù)緩存如何在Spring Boot中使用 

這個時候查看控制臺,發(fā)現(xiàn)并沒有數(shù)據(jù)數(shù)據(jù),就是因為數(shù)據(jù)已經(jīng)處于緩存中了。

最后我們在瀏覽器中輸入http://localhost:8080/evit&#63;id=106,將數(shù)據(jù)從緩存中移除,訪問結(jié)果如下:

數(shù)據(jù)緩存如何在Spring Boot中使用 

這個時候查看控制臺,已經(jīng)提示緩存移除掉了:

數(shù)據(jù)緩存如何在Spring Boot中使用 

同時數(shù)據(jù)也從數(shù)據(jù)庫刪除掉了,這個時候如果還需要該數(shù)據(jù)則需要我們繼續(xù)向表中添加數(shù)據(jù)。

緩存技術切換

Spring Boot默認情況下使用ConcurrentMapCacheManager作為緩存技術,有的時候你可能想替換為其他的緩存方式,在Spring Boot中進行緩存的切換非常簡單,我這里以Google提供的Guava為例,如果要使用這種緩存策略,只需要添加相應的依賴即可,如下:

<dependency>
 <groupId>com.google.guava</groupId>
 <artifactId>guava</artifactId>
 <version>20.0</version>
</dependency>

就這樣就可以了。實際上在Spring Boot中,底層使用哪一種緩存我們并不必做過多考慮,切換的方式也很簡單,如上文引入相應的依賴即可,我們只需要把上層的邏輯寫好即可。

關于數(shù)據(jù)緩存如何在Spring Boot中使用問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI