张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
}