码迷,mamicode.com
首页 > 其他好文 > 详细

RedisTemplate 事务处理方法 watch multi exec 的使用

时间:2019-09-11 13:24:34      阅读:623      评论:0      收藏:0      [点我收藏+]

标签:throws   temp   iso   send   col   except   i++   obj   ons   

    @Autowired
    RedisTemplate<String,String> redisTemplate;


        redisTemplate.execute(new SessionCallback<Object>(){

            @Override
            public <K, V> Object execute(RedisOperations<K, V> operations) throws DataAccessException {
                //开启事务
                operations.multi();
                for(int i = 1; i <= 5; i++) {
                    redisTemplate.convertAndSend("channel:test", String.format("我是消息{%d}号: %tT", i, new Date()));
                    redisTemplate.opsForValue().set("key" + i,"key" + i);
                }
                //执行事务
                operations.exec();
                return null;
            }
        });

 

RedisTemplate 事务处理方法 watch multi exec 的使用

标签:throws   temp   iso   send   col   except   i++   obj   ons   

原文地址:https://www.cnblogs.com/powerwu/p/11505716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!