org.springframework.boot.autoconfigure.data.redis.CustomRedisProperties Maven / Gradle / Ivy
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.boot.autoconfigure.data.redis;
import org.springframework.boot.autoconfigure.data.redis.RedisProperties.Pool;
import org.springframework.boot.context.properties.ConfigurationProperties;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* Custom {@link RedisProperties}
*/
@ConfigurationProperties(prefix = "spring.redis")
@Data
public class CustomRedisProperties {
/**
* Connection timeout in milliseconds
*/
private int connectionTimeout;
/**
* Socket timeout in milliseconds
*/
private int socketTimeout;
/**
* {@link CustomPool}
*/
private CustomPool pool = new CustomPool();
/**
* {@link Slave}
*/
private Slave slave = new Slave();
/**
* Custom {@link org.springframework.boot.autoconfigure.data.redis.RedisProperties.Pool}
*/
@EqualsAndHashCode(callSuper = true)
@Data
public static class CustomPool extends Pool {
/**
* Test on create
*/
private boolean testOnCreate;
/**
* Test on borrow
*/
private boolean testOnBorrow;
/**
* Test on return
*/
private boolean testOnReturn;
/**
* Test while idle
*/
private boolean testWhileIdle;
}
/**
* Slave
*/
@Data
public static class Slave {
/**
* Host
*/
private String host = "localhost";
/**
* Port
*/
private int port = 6379;
/**
* Connection timeout in milliseconds
*/
private int connectionTimeout;
/**
* Socket timeout in milliseconds
*/
private int socketTimeout;
/**
* {@link CustomPool}
*/
private CustomPool pool = new CustomPool();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy