All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cloud.tianai.rpc.springboot.properties.RpcConsumerProperties Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package cloud.tianai.rpc.springboot.properties;

import cloud.tianai.rpc.core.client.proxy.RpcProxyType;
import cloud.tianai.rpc.core.loadbalance.impl.RoundRobinLoadBalance;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties(prefix = "tianai-rpc.client")
public class RpcConsumerProperties {
    private String client = "netty";

    /** 设置默认的超时时间,可以当做全局使用. */
    private Integer defaultRequestTimeout = 5000;

    /** 重试次数. */
    private Integer retry = 3;

    /** 默认是轮询模式. */
    private String loadbalance = RoundRobinLoadBalance.NAME;

    /** 懒加载服务注册. */
    private boolean lazyLoadRegistry = true;

    /** 懒加载rpc客户端. */
    private boolean lazyStartRpcClient = true;

    /** 默认使用字节码代理. */
    private RpcProxyType defaultProxyType = RpcProxyType.JAVASSIST_PROXY;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy