spring boot中redis使用

spring boot中redis使用

一、简介

这里介绍在spring boot中redis的使用,包含常规使用以及基于队列的使用。

二、示例

2.1 添加maven依赖
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.3.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.dragon.study</groupId>
    <artifactId>spring_boot_data_redis</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>spring_boot_data_redis</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>
2.2 定义配置文件application.yaml

application.yaml如下:

spring:
  application:
    name: spring-boot-data-redis
  redis:
    host: localhost
    port: 6379
    database: 0
server:
  port: 10018
2.3 定义监听处理类

监听处理类ReflectRedisMqListener.java

package com.dragon.study.spring_boot_data_redis.redisMq;
import org.springframework.stereotype.Component;
@Component
public class ReflectRedisMqListener {
    //基于direct的消息处理
    public void directMsgDispose(String msg){
        System.out.println("ReflectRedisMqListener directMsgDispose msg: "+ msg);
    }
    //基于topic的消息处理
    public void topicMsgDispose(String msg){
        System.out.println("ReflectRedisMqListener topicMsgDispose msg: "+ msg);
    }
}
2.4 定义redis配置类
package com.dragon.study.spring_boot_data_redis.redisMq;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.listener.ChannelTopic;
import org.springframework.data.redis.listener.PatternTopic;
import org.springframework.data.redis.listener.RedisMessageListenerContainer;
import org.springframework.data.redis.listener.adapter.MessageListenerAdapter;
import javax.annotation.Resource;

@Configuration
public class RedisMqConfig {
    @Resource
    private RedisConnectionFactory redisConnectionFactory;
    @Resource
    private ReflectRedisMqListener reflectRedisMqListener;

    @Bean
    public RedisMessageListenerContainer redisMessageListenerContainer() {
        RedisMessageListenerContainer container = new RedisMessageListenerContainer();
        container.setConnectionFactory(redisConnectionFactory);
        container.addMessageListener(directMessageListenerAdapter(), new ChannelTopic("direct"));  //绑定topicMessageListenerAdapter监控器到指定信道direct
        container.addMessageListener(topicMessageListenerAdapter(), new PatternTopic("topic*"));  //绑定topicMessageListenerAdapter监控器到模糊匹配信道topic*
        return container;
    }

    @Bean
    public MessageListenerAdapter directMessageListenerAdapter(){
        return new MessageListenerAdapter(reflectRedisMqListener,"directMsgDispose");//通过反射,由ReflectRedisMqListener类的topicMsgDispose处理消息
    }

    @Bean
    public MessageListenerAdapter topicMessageListenerAdapter(){
        return new MessageListenerAdapter(reflectRedisMqListener,"topicMsgDispose");//通过反射,由ReflectRedisMqListener类的topicMsgDispose处理消息
    }
}
2.5 定义配置类
package com.dragon.study.spring_boot_data_redis;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
@SpringBootApplication
public class SpringBootDataRedisApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringBootDataRedisApplication.class, args);
    }


}
2.6 测试

测试前先启动SpringBootDataRedisApplication,打开redis监听,接着定义测试类如下:

package com.dragon.study.spring_boot_data_redis;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.StringRedisTemplate;
import javax.annotation.Resource;
import java.util.Set;

@SpringBootTest
class SpringBootDataRedisApplicationTests {
    @Resource
    private StringRedisTemplate stringRedisTemplate;

    //消息测试
    @Test
    void redisListenerTest() {
        stringRedisTemplate.convertAndSend("topic", "topic_msg1");
        stringRedisTemplate.convertAndSend("topicOne", "topic_msg2");
        stringRedisTemplate.convertAndSend("topicTwo", "topic_msg3");
        stringRedisTemplate.convertAndSend("direct", "direct_msg1");
    }

    //常规测试
    @Test
    void redisTest() {
        //对string操作
        stringRedisTemplate.opsForValue().set("k6", "v6");
        Object vaObject = stringRedisTemplate.opsForValue().get("k6");

        //对list操作
        stringRedisTemplate.opsForList().rightPush("q", "one");
        Object o = stringRedisTemplate.opsForList().leftPop("q");

        //对hash操作
        stringRedisTemplate.opsForHash().put("h", "k1", "v1");
        Object hashObject = stringRedisTemplate.opsForHash().get("h", "k1");

        //对set操作
        stringRedisTemplate.opsForSet().add("s", "v1", "v2");
        Object setObject = stringRedisTemplate.opsForSet().pop("s");

        //对zset有序集合操作,最后一个参数为元素分数
        stringRedisTemplate.opsForZSet().add("zs", "v1", 99);
        stringRedisTemplate.opsForZSet().add("zs", "v2", 89);
        Set scoreZset = stringRedisTemplate.opsForZSet().rangeByScore("zs", 90, 100);
        Set zset = stringRedisTemplate.opsForZSet().range("zs", 0, 0);
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值