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

sviolet.slate.springboot.auto.SlateProperties Maven / Gradle / Ivy

There is a newer version: 11.4
Show newest version
package sviolet.slate.springboot.auto;

import org.springframework.boot.context.properties.ConfigurationProperties;
import sviolet.slate.springboot.modelx.loadbalance.auto.HttpClientProperties;

import java.util.Map;

/**
 * Slate自动配置参数
 *
 * @author S.Violet
 */
@ConfigurationProperties(prefix = "slate")
public class SlateProperties {

    /**
     * slate.httpclients
     * 自动配置SimpleOkHttpClient(多个)
     */
    private Map httpclients;

    public Map getHttpclients() {
        return httpclients;
    }

    public void setHttpclients(Map httpclients) {
        this.httpclients = httpclients;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy