您好,登錄后才能下訂單哦!
本篇內容主要講解“Java、Spring和Springboot怎么整合Redis數據庫”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Java、Spring和Springboot怎么整合Redis數據庫”吧!
<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(){
//創建連接池配置對象
JedisPoolConfig config=new JedisPoolConfig();
config.setMaxIdle(10);
config.setMinIdle(5);
config.setMaxTotal(100);
//需要redis的服務密碼時,使用第一種創建方式
//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連接池對象-->
<bean id="poolConfig" class="redis.clients.jedis.JedisPoolConfig">
<!--最大空閑數-->
<property name="maxIdle" value="50"/>
<!--最大連接數-->
<property name="maxTotal" value="100"/>
<!--最大等待時間-->
<property name="maxWaitMillis" value="60000"/>
</bean>
<!--2、配置redis連接工廠-->
<bean id="factory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<!--連接池的配置-->
<property name="poolConfig" ref="poolConfig"/>
<!--連接主機-->
<property name="hostName" value="192.168.65.128"/>
<!--端口-->
<property name="port" value="6379"/>
<!--密碼-->
<!--
當出現以下錯誤時,說明并不需要設置密碼
Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR Client sent AUTH, but no password is set
-->
<!--<property name="password" value="root"/>-->
</bean>
<!--3、配置redis模板對象-->
<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對象會自帶key和value的序列化功能。在redis的客戶端操作時,獲取的key是被序列化后的key.
思考:為什么Spring要提供一個序列化的功能? 為了開發者方便將對象存入redis中。可在xml中配置自定義的序列化類型。
<!--3、配置redis模板對象-->
<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
<!--配置連接工廠-->
<property name="connectionFactory" ref="factory"/>
<!--配置String類型的key value序列化方式 當存儲的key是String類型時,則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"/>
<!--默認的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、注入模板對象
@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("操作成功");
}
//獲取幾種數據結構的對象
@Test
public void getRedisType(){
//1、操作字符串數據類型
redisTemplate.opsForValue();
//2、操作hash的數據類型
redisTemplate.opsForHash();
//3、操作List的數據類型
redisTemplate.opsForList();
//4、操作Set的數據類型
redisTemplate.opsForSet();
//5、操作hSet的數據類型
redisTemplate.opsForZSet();
//6、操作基數的數據類型
redisTemplate.opsForHyperLogLog();
}
}
注意:不能在yml配置文件中配置自定義序列化,可以在springboot啟動類或者測試類中,通過@PostConstruct注解來觸發執行方法,從而達到配置自定義序列化的效果。
補充:
1.@PostConstruct說明
被@PostConstruct修飾的方法會在服務器加載Servlet的時候運行,并且只會被服務器調用一次,類似于Serclet的inti()方法。被@PostConstruct修飾的方法會在構造函數之后,init()方法之前運行。
2.@PreDestroy說明
被@PreDestroy修飾的方法會在服務器卸載Servlet的時候運行,并且只會被服務器調用一次,類似于Servlet的destroy()方法。被@PreDestroy修飾的方法會在destroy()方法之后運行,在Servlet被徹底卸載之前。
1、當項目報以下錯誤:Caused by: redis.clients.jedis.exceptions.JedisDataException: ERR Client sent AUTH, but no password is set
報錯的原因:是redis服務沒設置密碼,而項目配置文件中寫了有redis密碼
解決方案:
1)把項目配置文件中的密碼password設置為空或者不設置。
2)設置redis服務密碼
——可通過直接修改redis.conf配置文件中的requirepass屬性方式,如果修改不生效,可通過命令方式修改,進入redis的客戶端
redis 127.0.0.1:6379> CONFIG SET requirepass “root”
OK
redis 127.0.0.1:6379> AUTH root
Ok
然后重啟項目就可以連接本機的redis服務了。
到此,相信大家對“Java、Spring和Springboot怎么整合Redis數據庫”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。