服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - Springboot2.X集成redis集群(Lettuce)连接的方法

Springboot2.X集成redis集群(Lettuce)连接的方法

2021-05-16 16:17Damein_xym Java教程

这篇文章主要介绍了Springboot2.X集成redis集群(Lettuce)连接的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

前提:搭建好redis集群环境,搭建方式请看:http://www.zzvips.com/article/29914.html

1. 新建工程,pom.xml文件中添加redis支持

?
1
2
3
4
<dependency>
  <groupid>org.springframework.boot</groupid>
  <artifactid>spring-boot-starter-data-redis</artifactid>
</dependency>

2.配置application.properties

?
1
2
3
spring.redis.cluster.nodes=127.0.0.1:6380,127.0.0.1:6381,127.0.0.1:6382,127.0.0.1:6383,127.0.0.1:6384,127.0.0.1:6385
spring.redis.cluster.timeout=1000
spring.redis.cluster.max-redirects=3

3.      新建下面的两个类

?
1
2
3
4
5
6
7
8
9
10
11
12
13
@configuration
public class redisconfiguration {
  @resource
  private lettuceconnectionfactory mylettuceconnectionfactory;
  @bean
  public redistemplate<string, serializable> redistemplate() {
    redistemplate<string, serializable> template = new redistemplate<>();
    template.setkeyserializer(new stringredisserializer());
    template.setvalueserializer(new genericjackson2jsonredisserializer());
    template.setconnectionfactory(mylettuceconnectionfactory);
    return template;
  }
}
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@configuration
public class redisfactoryconfig {
  @autowired
  private environment environment;
  @bean
  public redisconnectionfactory mylettuceconnectionfactory() {
    map<string, object> source = new hashmap<string, object>();
    source.put("spring.redis.cluster.nodes", environment.getproperty("spring.redis.cluster.nodes"));
    source.put("spring.redis.cluster.timeout", environment.getproperty("spring.redis.cluster.timeout"));
    source.put("spring.redis.cluster.max-redirects", environment.getproperty("spring.redis.cluster.max-redirects"));
    redisclusterconfiguration redisclusterconfiguration;
    redisclusterconfiguration = new redisclusterconfiguration(new mappropertysource("redisclusterconfiguration", source));
    return new lettuceconnectionfactory(redisclusterconfiguration);
  }
}

4. 执行测试

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@springboottest
@runwith(springrunner.class)
public class redisconfigurationtest {
 
  @autowired
private redistemplate redistemplate;
 
@test
public void redistemplate() throws exception {
 
    redistemplate.opsforvalue().set("author", "damein_xym");
}
 
}

5. 验证,使用redis desktop manager 连接redis节点,查看里面的数据是否存在author,有如下显示,证明成功。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/xymBlog/p/9303032.html

延伸 · 阅读

精彩推荐