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

溫馨提示×

springboot配置jedispool的方法是什么

小億
193
2024-02-22 15:36:34
欄目: 編程語言

在Spring Boot中配置Jedis Pool時,通常首先要引入Jedis依賴。

  1. 添加Jedis依賴:
<dependency>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
</dependency>
  1. 在application.properties或application.yml文件中配置Redis連接信息:
spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.password=
spring.redis.jedis.pool.max-active=8
spring.redis.jedis.pool.max-idle=8
spring.redis.jedis.pool.min-idle=0
spring.redis.jedis.pool.max-wait=-1
  1. 創建Jedis配置類:
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.connection.jedis.JedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.StringRedisSerializer;

@Configuration
public class JedisConfig {

    @Bean
    public JedisConnectionFactory jedisConnectionFactory() {
        JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory();
        jedisConnectionFactory.setHostName("127.0.0.1");
        jedisConnectionFactory.setPort(6379);
        return jedisConnectionFactory;
    }

    @Bean
    public RedisTemplate<String, String> redisTemplate() {
        RedisTemplate<String, String> redisTemplate = new RedisTemplate<>();
        redisTemplate.setConnectionFactory(jedisConnectionFactory());
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setValueSerializer(new StringRedisSerializer());
        return redisTemplate;
    }
}

這樣就可以配置并使用Jedis Pool來連接Redis數據庫了。在其他類中可以通過@Autowired注解來注入RedisTemplate,然后使用其操作Redis數據。

0
华阴市| 永寿县| 通化县| 衡东县| 衡阳市| 兴国县| 台南市| 长宁县| 高唐县| 乌什县| 阳朔县| 博野县| 潼南县| 基隆市| 绥棱县| 汉寿县| 荃湾区| 石狮市| 辉县市| 吴堡县| 图木舒克市| 如东县| 浦城县| 普兰店市| 永城市| 湘乡市| 广昌县| 郁南县| 松阳县| 浙江省| 阳泉市| 新营市| 会理县| 长丰县| 疏附县| 安乡县| 阿拉尔市| 余庆县| 沧州市| 太康县| 永登县|