Spring boot Redis配置

server:
  port: 8080
spring:
  application:
    #\u5E94\u7528\u7684\u540D\u79F0\uFF0C\u53EF\u9009
    name: kesong-simulate
  datasource:
    druid:
      driver-class-name: com.mysql.cj.jdbc.Driver
      url: jdbc:mysql://localhost:3306/root?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true&connectTimeout=30000
      username: root
      password: 123123
  redis :
    host : 192.168.0.1
    port : 6379
    password :
#在springboot的yml配置文件中配置
mybatis-plus:
  configuration:
    map-underscore-to-camel-case: false
Spring Boot提供了对Redis的集成支持,可以通过配置实现Redis的哨兵模式。下面是Spring Boot Redis哨兵配置的步骤: 1. 首先,在`pom.xml`文件中添加RedisSpring Boot Redis依赖: ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency> ``` 2. 在`application.properties`或`application.yml`文件中配置Redis的哨兵模式: ```properties spring.redis.sentinel.master=masterName spring.redis.sentinel.nodes=host1:port1,host2:port2,host3:port3 ``` 其中,`masterName`是Redis主节点的名称,`host1:port1,host2:port2,host3:port3`是哨兵节点的地址列表。 3. 创建一个Redis配置类,用于创建RedisTemplate实例: ```java @Configuration public class RedisConfig { @Value("${spring.redis.sentinel.master}") private String masterName; @Value("${spring.redis.sentinel.nodes}") private String sentinelNodes; @Bean public RedisConnectionFactory redisConnectionFactory() { RedisSentinelConfiguration sentinelConfig = new RedisSentinelConfiguration() .master(masterName); String[] nodes = sentinelNodes.split(","); for (String node : nodes) { String[] parts = node.split(":"); sentinelConfig.sentinel(parts, Integer.parseInt(parts)); } return new JedisConnectionFactory(sentinelConfig); } @Bean public RedisTemplate<String, Object> redisTemplate() { RedisTemplate<String, Object> template = new RedisTemplate<>(); template.setConnectionFactory(redisConnectionFactory()); return template; } } ``` 以上配置完成后,就可以在Spring Boot应用中使用Redis的哨兵模式了。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

!chen

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值