亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
炎陵县| 龙川县| 翁源县| 枣强县| 丰镇市| 陕西省| 泰和县| 漳平市| 威宁| 新和县| 若羌县| 绍兴市| 东乌| 巴林左旗| 德化县| 夏邑县| 曲靖市| 临西县| 杨浦区| 桃江县| 兴文县| 若尔盖县| 博乐市| 西和县| 皋兰县| 灵璧县| 静乐县| 深水埗区| 澎湖县| 绥江县| 谷城县| 兴和县| 横山县| 山东省| 高碑店市| 博乐市| 察隅县| 陇川县| 抚远县| 台中市| 丹巴县|