今天小編給大家分享一下SpringBoot與redis怎么整合的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
為雞東等地區(qū)用戶提供了全套網頁設計制作服務,及雞東網站建設行業(yè)解決方案。主營業(yè)務為網站設計、網站建設、雞東網站設計,以傳統(tǒng)方式定制建設網站,并提供域名空間備案等一條龍服務,秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
引入這個依賴器創(chuàng)建項目,在項目pom.xml文件會出現(xiàn)以下依賴:
Person:
package com.hardy.springbootdataredis.domain;import org.springframework.data.annotation.Id;import org.springframework.data.redis.core.RedisHash;import org.springframework.data.redis.core.index.Indexed;/** * @Author: HardyYao * @Date: 2021/6/15 */@RedisHash("persons") // 指定操作實體類對象在Redis數(shù)據(jù)庫中的存儲空間public class Person { @Id // 標識實體類主鍵private String id; @Indexed // 標識對應屬性在Redis數(shù)據(jù)庫中生成二級索引private String firstname; @Indexedprivate String lastname;private Address address;public String getId() {return id; }public void setId(String id) {this.id = id; }public String getFirstname() {return firstname; }public void setFirstname(String firstname) {this.firstname = firstname; }public String getLastname() {return lastname; }public void setLastname(String lastname) {this.lastname = lastname; }public Address getAddress() {return address; }public void setAddress(Address address) {this.address = address; } @Overridepublic String toString() {return "Person{" + "id='" + id + ''' + ", firstname='" + firstname + ''' + ", lastname='" + lastname + ''' + ", address=" + address + '}'; } }
Address:
package com.hardy.springbootdataredis.domain;import org.springframework.data.redis.core.index.Indexed;/** * @Author: HardyYao * @Date: 2021/6/15 */public class Address { @Indexedprivate String city; @Indexedprivate String country;public String getCity() {return city; }public void setCity(String city) {this.city = city; }public String getCountry() {return country; }public void setCountry(String country) {this.country = country; } @Overridepublic String toString() {return "Address{" + "city='" + city + ''' + ", country='" + country + ''' + '}'; } }
在上述兩個實體類中,涉及了關于Redis數(shù)據(jù)庫的數(shù)據(jù)操作的幾個注解:
@RedisHash(“persons”):用于指定操作實體類對象在Redis數(shù)據(jù)庫中的存儲空間,此處表示針對Person實體類的數(shù)據(jù)操作都存儲在Redis數(shù)據(jù)庫中名為persons的存儲空間下。
@Id:用于標識實體類主鍵。在Redis數(shù)據(jù)庫中會默認生成字符串形式的HashKey表示唯一的實體對象id,當然也可以在數(shù)據(jù)存儲時手動指定id。
@Indexed:用于標識對應屬性在Redis數(shù)據(jù)庫中生成二級索引。使用該注解后會在數(shù)據(jù)庫中生成屬性對應的二級索引,索引名稱就是屬性名,可以方便地進行數(shù)據(jù)查詢。
SpringBoot針對包括Redis在內的一些常用數(shù)據(jù)庫提供了自動化配置,可以通過實現(xiàn)Repository接口簡化對數(shù)據(jù)庫中的數(shù)據(jù)進行增刪查改的操作:
package com.hardy.springbootdataredis.repository;import com.hardy.springbootdataredis.domain.Person;import org.springframework.data.repository.CrudRepository;import java.util.List;/** * @Author: HardyYao * @Date: 2021/6/15 */public interface PersonRepository extends CrudRepository{ List findByAddress_City(String City); }
注意:在操作Redis數(shù)據(jù)庫時編寫的Repository接口類需要繼承最底層的CrudRepository接口,而不是繼承JpaRepository(JpaRepository是SpringBoot整合JPA特有的)。當然,也可以在項目pom.xml文件中同時導入SpringBoot整合的JPA依賴和Redis依賴,這樣就可以編寫一個繼承JpaRepository的接口的操作Redis數(shù)據(jù)庫。
在項目的全局配置文件application.properties中添加Redis數(shù)據(jù)庫的連接配置,示例代碼如下:
# Redis服務器地址 spring.redis.host=127.0.0.1 # Redis服務器連接端口 spring.redis.port=6379 # Redis服務器連接密碼(默認為空) spring.redis.password=
package com.hardy.springbootdataredis;import com.hardy.springbootdataredis.domain.Address;import com.hardy.springbootdataredis.domain.Person;import com.hardy.springbootdataredis.repository.PersonRepository;import org.junit.jupiter.api.Test;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import java.util.List; @SpringBootTestclass SpringbootdataRedisApplicationTests { @Autowiredprivate PersonRepository repository; @Testpublic void savePerson() { Person person = new Person(); person.setFirstname("張"); person.setLastname("三"); Address address = new Address(); address.setCity("北京"); address.setCountry("中國"); person.setAddress(address);// 向Redis數(shù)據(jù)庫添加數(shù)據(jù)Person save = repository.save(person); } @Testpublic void selectPerson() { Listlist = repository.findByAddress_City("北京");for (Person person : list) { System.out.println(person); } } }
打開Redis客戶端可視化管理工具,先連接本地Redis服務器:
連接成功后,可以看到原來本地Redis數(shù)據(jù)庫中是沒有數(shù)據(jù)的:
運行上文中編寫好的兩個測試方法,查看控制臺打印結果:
為了驗證save()方法確實把數(shù)據(jù)寫入到本地Redis數(shù)據(jù)庫中了,打開Redis客戶端可視化管理工具,刷新一下數(shù)據(jù),可以看到數(shù)據(jù)成功寫入了:
通過上圖可知:執(zhí)行save()方法添加的數(shù)據(jù)在Redis數(shù)據(jù)庫中存儲成功。另外,在數(shù)據(jù)庫列表左側還形成了一張類似address.city、firstname、lastname等二級索引,這些二級索引是前面創(chuàng)建Person類時在對應屬性上添加@Indexed注解而生成的。同時,由于在Redis數(shù)據(jù)庫中生成了對應屬性的二級索引,所以可以通過二級索引來查詢具體的數(shù)據(jù)信息,例如repository.findByAddress_City(“北京”)通過address.city索引查詢索引值為北京的數(shù)據(jù)信息。如果沒有設置對應屬性的二級索引,那么通過屬性索引查詢的數(shù)據(jù)結果將為空。
以上就是“SpringBoot與Redis怎么整合”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。