91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

springboot redis多數據源怎樣設置過期時間

小樊
81
2024-11-11 18:40:28
欄目: 云計算

在Spring Boot中配置Redis多數據源并設置過期時間,你需要遵循以下步驟:

  1. 添加依賴

確保你的pom.xml文件中包含了Spring Boot Redis的依賴:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
  1. 配置數據源

application.ymlapplication.properties文件中配置多個數據源。例如:

# application.yml
spring:
  redis:
    datasource1:
      host: localhost
      port: 6379
      password: your_password
      database: 0
      timeout: 60000
    datasource2:
      host: localhost
      port: 6380
      password: your_password
      database: 1
      timeout: 60000
  1. 創建數據源配置類

創建一個配置類,用于創建和配置多個Redis數據源。例如:

@Configuration
public class RedisDataSourceConfig {

    @Bean
    @ConfigurationProperties(prefix = "spring.redis.datasource1")
    public DataSource redisDataSource1() {
        return DataSourceBuilder.create().build();
    }

    @Bean
    @ConfigurationProperties(prefix = "spring.redis.datasource2")
    public DataSource redisDataSource2() {
        return DataSourceBuilder.create().build();
    }

    @Bean
    public RedisTemplate<String, Object> redisTemplate1(RedisConnectionFactory factory) {
        RedisTemplate<String, Object> template = new RedisTemplate<>();
        template.setConnectionFactory(factory);
        return template;
    }

    @Bean
    public RedisTemplate<String, Object> redisTemplate2(RedisConnectionFactory factory) {
        RedisTemplate<String, Object> template = new RedisTemplate<>();
        template.setConnectionFactory(factory);
        return template;
    }
}
  1. 創建Redis配置類

創建一個配置類,用于配置多個數據源的RedisTemplate。例如:

@Configuration
public class RedisConfig {

    @Autowired
    private RedisDataSourceConfig redisDataSourceConfig;

    @Bean
    public RedisTemplate<String, Object> redisTemplate1() {
        RedisTemplate<String, Object> template = redisDataSourceConfig.redisTemplate1(redisDataSourceConfig.redisDataSource1());
        template.setKeySerializer(new StringRedisSerializer());
        template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
        template.afterPropertiesSet();
        return template;
    }

    @Bean
    public RedisTemplate<String, Object> redisTemplate2() {
        RedisTemplate<String, Object> template = redisDataSourceConfig.redisTemplate2(redisDataSourceConfig.redisDataSource2());
        template.setKeySerializer(new StringRedisSerializer());
        template.setValueSerializer(new GenericJackson2JsonRedisSerializer());
        template.afterPropertiesSet();
        return template;
    }
}
  1. 設置過期時間

在你的服務類中,使用RedisTemplate設置過期時間。例如:

@Service
public class MyService {

    @Autowired
    private RedisTemplate<String, Object> redisTemplate1;

    public void setKeyWithExpiration(String key, Object value, int expiration) {
        redisTemplate1.opsForValue().set(key, value, expiration, TimeUnit.SECONDS);
    }
}

在這個例子中,我們為第一個數據源設置了過期時間為expiration秒。你可以根據需要調整數據源和過期時間。

0
兰西县| 澄城县| 都匀市| 革吉县| 石景山区| 礼泉县| 北流市| 体育| 苏州市| 外汇| 灵璧县| 沙坪坝区| 东乡| 普宁市| 临夏市| 葵青区| 上饶市| 苍山县| 宜都市| 五莲县| 阜宁县| 耒阳市| 珠海市| 旌德县| 黑龙江省| 界首市| 珲春市| 安平县| 治多县| 资阳市| 吉水县| 沙河市| 巫溪县| 缙云县| 眉山市| 福建省| 同心县| 岳西县| 张家界市| 普洱| 平原县|