package com.thhy.filectrl.config.fdfs; import lombok.Data; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.context.annotation.Configuration; @Configuration @ConfigurationProperties(prefix ="fastdfs") @Data public class FdfsProperties { private String enable; private String viewaddr; private String connect_timeout_in_seconds ; private String network_timeout_in_seconds ; private String charset ; private String http_anti_steal_token ; private String http_secret_key ; private String http_tracker_http_port ; /*private String connection_pool.enabled ; private String connection_pool.max_count_per_entry ; private String connection_pool.max_idle_time ; private String connection_pool.max_wait_time_in_ms ;*/ private String tracker_servers; }