当前位置:   article > 正文

SpringBoot中使用Jedis_springboot jedis

springboot jedis

SpringBoot中使用Jedis

1.pom依赖

<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
<dependency>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
</dependency>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2.创建配置类

@Configuration
public class RedisConfig {
    //从配置文件中获取参数注入
    @Value("${redis.host:127.0.0.1}")
    private String redisHost;
    @Value("${redis.port:6379}")
    private Integer redisPort;
    @Value("${redis.password}")
    private String redisPassword;

    //配置连接池
    @Bean
    JedisPoolConfig jedisPoolConfig(){
        JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();
        jedisPoolConfig.setMaxTotal(10); //最大连接数
        jedisPoolConfig.setMaxIdle(10); //最大空闲连接数
        return jedisPoolConfig;
    }

    //构造一个连接池对象
    @Bean
    public JedisP
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/159992?site
推荐阅读
相关标签
  

闽ICP备14008679号