中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
马边| 昌江| 盐边县| 青州市| 邵阳县| 思茅市| 四川省| 崇阳县| 大余县| 沁水县| 土默特右旗| 准格尔旗| 孟村| 德庆县| 翼城县| 大宁县| 浠水县| 达日县| 广昌县| 甘洛县| 陆川县| 香格里拉县| 塘沽区| 蒲江县| 大田县| 麻阳| 丰原市| 浙江省| 泸定县| 城固县| 安康市| 黎城县| 滦南县| 秦皇岛市| 敦化市| 铅山县| 偃师市| 朝阳县| 定兴县| 格尔木市| 黔江区|