Jedis的Publish/Subscribe功能的运用

由于redis内置了发布/订阅功能,可以作为消息机制使用。所以这里主要使用Jedis的Publish/Subscribe功能。

1.添加Spring核心包,主要使用其最核心的IoC功能。如果使用Maven,配置如下:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>3.1.1.RELEASE</version>
    <type>jar</type>
    <scope>compile</scope>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context-support</artifactId>
    <version>3.1.1.RELEASE</version>
    <type>jar</type>
    <scope>compile</scope>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-beans</artifactId>
    <version>3.1.1.RELEASE</version>
    <type>jar</type>
    <scope>compile</scope>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>3.1.1.RELEASE</version>
    <type>jar</type>
    <scope>compile</scope>
</dependency>

2.使用Spring来配置Jedis连接池和RedisUtil的注入,写在bean-config.xml中。

<!-- pool配置 -->
<bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">
    <property name="maxActive" value="20" />
    <property name="maxIdle" value="10" />
    <property name="maxWait" value="1000" />
    <property name="testOnBorrow" value="true" />
</bean>
<!-- jedis pool配置 -->
<bean id="jedisPool" class="redis.clients.jedis.JedisPool">
    <constructor-arg index="0" ref="jedisPoolConfig" />
    <constructor-arg index="1" value="10.8.9.237" />
    <constructor-arg index="2" value="6379" />
</bean>
<!-- 包装类 -->
<bean id="redisUtil" class="demo.RedisUtil">
    <property name="jedisPool" ref="jedisPool" />
</bean>

3.编写RedisUtil,这里只是简单的包装,不做解释。

package demo;

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;


/**  
 * 连接和使用redis资源的工具类    
 * @author watson   
 * @version 0.5   
 */ 
public class RedisUtil {

    /**       
     * 数据源      
     */     
    private JedisPool jedisPool;

    /**      
     * 获取数据库连接       
     * @return conn       
     */     
    public Jedis getConnection() {
        Jedis jedis=null;          
        try {              
            jedis=jedisPool.getResource();          
        } catch (Exception e) {              
            e.printStackTrace();          
        }          
        return jedis;      
    }   

    /**       
     * 关闭数据库连接       
     * @param conn       
     */     
    public void closeConnection(Jedis jedis) {          
        if (null != jedis) {              
            try {                  
                jedisPool.returnResource(jedis);              
            } catch (Exception e) {
                    e.printStackTrace();              
            }          
        }      
    }  

    /**       
     * 设置连接池       
     * @param 数据源      
     */     
    public void setJedisPool(JedisPool JedisPool) {
        this.jedisPool = JedisPool;      
    }       

    /**       
     * 获取连接池       
     * @return 数据源       
     */     
    public JedisPool getJedisPool() {
        return jedisPool;      
    }     
} 

4.编写Lister
要使用Jedis的Publish/Subscribe功能,必须编写对JedisPubSub的自己的实现,其中的函数的功能如下:

package demo;

import redis.clients.jedis.JedisPubSub;

public class MyListener extends JedisPubSub {
    // 取得订阅的消息后的处理
    public void onMessage(String channel, String message) {
        System.out.println(channel + "=" + message);
    }

    // 初始化订阅时候的处理
    public void onSubscribe(String channel, int subscribedChannels) {
        // System.out.println(channel + "=" + subscribedChannels);
    }

    // 取消订阅时候的处理
    public void onUnsubscribe(String channel, int subscribedChannels) {
        // System.out.println(channel + "=" + subscribedChannels);
    }

    // 初始化按表达式的方式订阅时候的处理
    public void onPSubscribe(String pattern, int subscribedChannels) {
        // System.out.println(pattern + "=" + subscribedChannels);
    }

    // 取消按表达式的方式订阅时候的处理
    public void onPUnsubscribe(String pattern, int subscribedChannels) {
        // System.out.println(pattern + "=" + subscribedChannels);
    }

    // 取得按表达式的方式订阅的消息后的处理
    public void onPMessage(String pattern, String channel, String message) {
        System.out.println(pattern + "=" + channel + "=" + message);
    }
}

5.实现订阅动能
Jedis有两种订阅模式:subsribe(一般模式设置频道)和psubsribe(使用模式匹配来设置频道)。不管是那种模式都可以设置个数不定的频道。订阅得到信息在将会lister的onMessage(…)方法或者onPMessage(…)中进行进行处理,这里我们只是做了简单的输出。

ApplicationContext ac = <span style="background-color: #ffffff;">new ClassPathXmlApplicationContext("beans-config.xml");</span>
RedisUtil ru = (RedisUtil) ac.getBean("redisUtil"); 
final Jedis jedis = ru.getConnection();
final MyListener listener = new MyListener();
//可以订阅多个频道
//订阅得到信息在lister的onMessage(...)方法中进行处理
//jedis.subscribe(listener, "foo", "watson");

//也用数组的方式设置多个频道
//jedis.subscribe(listener, new String[]{"hello_foo","hello_test"});

//这里启动了订阅监听,线程将在这里被阻塞
//订阅得到信息在lister的onPMessage(...)方法中进行处理
jedis.psubscribe(listener, new String[]{"hello_*"});//使用模式匹配的方式设置频道

6.实现发布端代码
发布消息只用调用Jedis的publish(…)方法即可。

ApplicationContext ac = new ClassPathXmlApplicationContext("beans-config.xml");
RedisUtil ru = (RedisUtil) ac.getBean("redisUtil"); 
Jedis jedis = ru.getConnection();
jedis.publish("hello_foo", "bar123");
jedis.publish("hello_test", "hello watson");

7.分别运行上面的第5步的订阅端代码和第6步的发布端的代码,订阅端就可以得到发布端发布的结果。控制台输出结果如下:

hello_*=hello_foo=bar123
hello_*=hello_test=hello watson

至此Jedis的Publish/Subscribe功能的使用基本展示完成,该使用方法稍作完善和修改后即可用于生产环境。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值