spring+redis怎么用

发布时间:2022-01-05 16:28:44 作者:小新
来源:亿速云 阅读:142

这篇文章主要为大家展示了“spring+redis怎么用”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“spring+redis怎么用”这篇文章吧。

项目基本结构:

        springmvc+reids+mysql 用mvn 构建

        包:jedis-2.4.2、spring-data-redis-1.51.RELEASE

 pom:

<dependency>
  <groupId>redis.clients</groupId>
  <artifactId>jedis</artifactId>
  <version>2.4.2</version>
</dependency>
<dependency>
  <groupId>org.springframework.data</groupId>
  <artifactId>spring-data-redis</artifactId>
  <version>1.5.1.RELEASE</version>
</dependency>

spring-redis:

<bean id="jedisConnectionFactory"
class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"  p:host-name="localhost" p:port="6379">
</bean>
<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate"
p:connection-factory-ref="jedisConnectionFactory">
</bean>

测试类:         

@Component

public class RedisExample{

@Autowired

private RedisTemplate<String, String> template;

@Resource (name="redisTemplate")

private ListOperations<String, String> listOps;

    public void save(String key,String value){

       template.opsForList().leftPush(key, value);

    }

    

    public String get(String key){

      return template.opsForList().leftPop(key);

   }

}

其它类引用时,直接操作就可以了。

使用范围的建议:

  1. 用户缓存

  2. 权限,菜单

  3. 数据字典

  4. 常用表的前1000条记录。可用一定规则进行,时时更新

以上是“spring+redis怎么用”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

推荐阅读:
  1. 怎么用redis
  2. swiper怎么用

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

redis spring

上一篇:.NET Core开发日志中的HttpClientFactory如何理解

下一篇:Spring Module 0.3版本有哪些新特性

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》