您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Java、Spring和Springboot怎么整合Redis數(shù)據(jù)庫”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Java、Spring和Springboot怎么整合Redis數(shù)據(jù)庫”吧!
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
public class JedisTest {
public static void main(String[] args) {
//連接redis
//Jedis jedis=new Jedis("192.168.65.128",6379);
//使用Jedis連接池
Jedis jedis=getJedis();
//操作redis
jedis.set("name","小白");
jedis.set("age","19");
System.out.println("操作成功!");
jedis.close();
}
public static Jedis getJedis(){
//創(chuàng)建連接池配置對(duì)象
JedisPoolConfig config=new JedisPoolConfig();
config.setMaxIdle(10);
config.setMinIdle(5);
config.setMaxTotal(100);
//需要redis的服務(wù)密碼時(shí),使用第一種創(chuàng)建方式
//JedisPool jedisPool=new JedisPool(config,"192.168.65.128",6379,10000,"root");
JedisPool jedisPool=new JedisPool(config,"192.168.65.128",6379,10000);
return jedisPool.getResource();
}
}
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.1.8.RELEASE</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--1、配置redis連接池對(duì)象-->
<bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">
<!--最大空閑數(shù)-->
<property name="maxIdle" value="50"/>
<!--最大連接數(shù)-->
<property name="maxTotal" value="100"/>
<!--最大等待時(shí)間-->
<property name="maxWaitMillis" value="60000"/>
</bean>
<!--2、配置redis連接工廠-->
<bean id="factory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<!--連接池的配置-->
<property name="poolConfig" ref="poolConfig"/>
<!--連接主機(jī)-->
<property name="hostName" value="192.168.65.128"/>
<!--端口-->
<property name="port" value="6379"/>
<!--密碼-->
<!--
當(dāng)出現(xiàn)以下錯(cuò)誤時(shí),說明并不需要設(shè)置密碼
Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR Client sent AUTH, but no password is set
-->
<!--<property name="password" value="root"/>-->
</bean>
<!--3、配置redis模板對(duì)象-->
<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
<!--配置連接工廠-->
<property name="connectionFactory" ref="factory"/>
</bean>
</beans>
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:application-redis.xml")
public class RedisTest {
@Autowired
private RedisTemplate redisTemplate;
@Test
public void test(){
//redisTemplate.opsForValue().set("name","小黑");
Object name = redisTemplate.opsForValue().get("name");
System.out.println(name);
System.out.println("操作完成");
}
}
注意:使用Spring(SpringBoot)整合redis后,RedisTemplate對(duì)象會(huì)自帶key和value的序列化功能。在redis的客戶端操作時(shí),獲取的key是被序列化后的key.
思考:為什么Spring要提供一個(gè)序列化的功能? 為了開發(fā)者方便將對(duì)象存入redis中??稍趚ml中配置自定義的序列化類型。
<!--3、配置redis模板對(duì)象-->
<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
<!--配置連接工廠-->
<property name="connectionFactory" ref="factory"/>
<!--配置String類型的key value序列化方式 當(dāng)存儲(chǔ)的key是String類型時(shí),則vlaue也是String類型,且key和value不被序列化-->
<property name="keySerializer" ref="stringRedisSerializer"/>
<property name="valueSerializer" ref="stringRedisSerializer"/>
</bean>
<!--自定義序列化類型-->
<bean id="stringRedisSerializer" class="org.springframework.data.redis.serializer.StringRedisSerializer"/>
<!--默認(rèn)的jdk序列化-->
<bean id="jdkSerializationRedisSerializer" class="org.springframework.data.redis.serializer.JdkSerializationRedisSerializer"/>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
2、配置application.yml
3、注入模板對(duì)象
@RunWith(SpringRunner.class)
@SpringBootTest
class SpringbootRedisApplicationTests {
@Autowired
private RedisTemplate redisTemplate;
@PostConstruct
public void init(){
//配置String類型的key value序列化方式
redisTemplate.setStringSerializer(new StringRedisSerializer());
redisTemplate.setValueSerializer(new StringRedisSerializer());
}
@Test
void contextLoads() {
redisTemplate.opsForValue().set("age",12);
Object age = redisTemplate.opsForValue().get("age");
System.out.println(age);
System.out.println("操作成功");
}
//獲取幾種數(shù)據(jù)結(jié)構(gòu)的對(duì)象
@Test
public void getRedisType(){
//1、操作字符串?dāng)?shù)據(jù)類型
redisTemplate.opsForValue();
//2、操作hash的數(shù)據(jù)類型
redisTemplate.opsForHash();
//3、操作List的數(shù)據(jù)類型
redisTemplate.opsForList();
//4、操作Set的數(shù)據(jù)類型
redisTemplate.opsForSet();
//5、操作hSet的數(shù)據(jù)類型
redisTemplate.opsForZSet();
//6、操作基數(shù)的數(shù)據(jù)類型
redisTemplate.opsForHyperLogLog();
}
}
注意:不能在yml配置文件中配置自定義序列化,可以在springboot啟動(dòng)類或者測試類中,通過@PostConstruct注解來觸發(fā)執(zhí)行方法,從而達(dá)到配置自定義序列化的效果。
補(bǔ)充:
1.@PostConstruct說明
被@PostConstruct修飾的方法會(huì)在服務(wù)器加載Servlet的時(shí)候運(yùn)行,并且只會(huì)被服務(wù)器調(diào)用一次,類似于Serclet的inti()方法。被@PostConstruct修飾的方法會(huì)在構(gòu)造函數(shù)之后,init()方法之前運(yùn)行。
2.@PreDestroy說明
被@PreDestroy修飾的方法會(huì)在服務(wù)器卸載Servlet的時(shí)候運(yùn)行,并且只會(huì)被服務(wù)器調(diào)用一次,類似于Servlet的destroy()方法。被@PreDestroy修飾的方法會(huì)在destroy()方法之后運(yùn)行,在Servlet被徹底卸載之前。
1、當(dāng)項(xiàng)目報(bào)以下錯(cuò)誤:Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR Client sent AUTH, but no password is set
報(bào)錯(cuò)的原因:是redis服務(wù)沒設(shè)置密碼,而項(xiàng)目配置文件中寫了有redis密碼
解決方案:
1)把項(xiàng)目配置文件中的密碼password設(shè)置為空或者不設(shè)置。
2)設(shè)置redis服務(wù)密碼
——可通過直接修改redis.conf配置文件中的requirepass屬性方式,如果修改不生效,可通過命令方式修改,進(jìn)入redis的客戶端
redis 127.0.0.1:6379> CONFIG SET requirepass “root”
OK
redis 127.0.0.1:6379> AUTH root
Ok
然后重啟項(xiàng)目就可以連接本機(jī)的redis服務(wù)了。
到此,相信大家對(duì)“Java、Spring和Springboot怎么整合Redis數(shù)據(jù)庫”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。