微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

spring boot redis

dependency

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-pool2</artifactId>
        </dependency>

application-redis.properties

#########基础配置#########
spring.redis.database=0
#spring.redis.url=redis://user:[email protected]:6379
spring.redis.host=
spring.redis.port=
spring.redis.password=
spring.redis.timeout=30000
spring.redis.ssl=false

#########redis哨兵设置#########
#spring.redis.sentinel.master=
#spring.redis.sentinel.nodes=
#spring.redis.cluster.max-redirects=
#spring.redis.cluster.nodes=

#########jedis client 线程池配置#########
#spring.redis.jedis.pool.max-active=
#spring.redis.jedis.pool.max-idle=
#spring.redis.jedis.pool.min-idle=
#spring.redis.jedis.pool.max-wait=

#########lettuce client 线程池配置(认)#########
spring.redis.lettuce.pool.max-active=10
spring.redis.lettuce.pool.max-idle=5
spring.redis.lettuce.pool.min-idle=1
spring.redis.lettuce.pool.max-wait=20000
spring.redis.lettuce.shutdown-timeout=10

Test

@RunWith(springrunner.class)
@SpringBoottest
public class AnnotationAppContextTest {
    @Autowired
    private Redistemplate<String,String> redistemplate;
    @Autowired
    private StringRedistemplate stringRedistemplate;

    @Test
    public void settest(){
        redistemplate.opsForValue().set("key1","val1", 100);
        String key1 = redistemplate.opsForValue().get("key1");
        System.err.println("=============="+key1);
    }
}

源码-RedisProperties

@ConfigurationProperties(prefix = "spring.redis")
public class RedisProperties {

    /**
     * Database index used by the connection factory.
     */
    private int database = 0;

    /**
     * Connection URL. Overrides host, port, and password. User is ignored. Example:
     * redis://user:[email protected]:6379
     */
    private String url;

    /**
     * Redis server host.
     */
    private String host = "localhost";

    /**
     * Login password of the redis server.
     */
    private String password;

    /**
     * Redis server port.
     */
    private int port = 6379;

    /**
     * Whether to enable SSL support.
     */
    private boolean ssl;

    /**
     * Connection timeout.
     */
    private Duration timeout;

    private Sentinel sentinel;

    private Cluster cluster;

    private final Jedis jedis = new Jedis();

    private final Lettuce lettuce = new Lettuce();
}   

源码-RedisAutoConfiguration

@Configuration
@ConditionalOnClass(RedisOperations.class)
@EnableConfigurationProperties(RedisProperties.class)
@Import({ LettuceConnectionConfiguration.class, JedisConnectionConfiguration.class })
public class RedisAutoConfiguration {

    @Bean
    @ConditionalOnMissingBean(name = "redistemplate")
    public Redistemplate<Object, Object> redistemplate(
            RedisConnectionFactory redisConnectionFactory) throws UnkNownHostException {
        Redistemplate<Object, Object> template = new Redistemplate<>();
        template.setConnectionFactory(redisConnectionFactory);
        return template;
    }

    @Bean
    @ConditionalOnMissingBean(StringRedistemplate.class)
    public StringRedistemplate stringRedistemplate(
            RedisConnectionFactory redisConnectionFactory) throws UnkNownHostException {
        StringRedistemplate template = new StringRedistemplate();
        template.setConnectionFactory(redisConnectionFactory);
        return template;
    }

}

参考:https://blog.csdn.net/abombhz/article/details/78123253?locationNum=6&fps=1

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐