管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-01-06 f2878af9a5edf96407e5a6740d8e89fe4f4c27c1
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package com.lf.server.config;
 
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
 
/**
 * 属性配置类
 * @author WWW
 */
@Configuration
@SuppressWarnings("AlibabaCommentsMustBeJavadocFormat")
public class PropertiesConfig {
    @Value("${sys.fme.url}")
    private String fmeUrl;
 
    @Value("${sys.path.download}")
    private String downloadPath;
 
    @Value("${sys.path.upload}")
    private String uploadPath;
 
    @Value("${sys.path.share}")
    private String sharePath;
 
    @Value("${sys.path.temp}")
    private String tempPath;
 
    // @Value("${spring.datasource.druid.stat-view-servlet.login-username}")
    private String druidUser;
 
    // @Value("${spring.datasource.druid.stat-view-servlet.login-password}")
    private String druidPwd;
 
    public String getFmeUrl() {
        return fmeUrl;
    }
 
    public void setFmeUrl(String fmeUrl) {
        this.fmeUrl = fmeUrl;
    }
 
    public String getDownloadPath() {
        return downloadPath;
    }
 
    public void setDownloadPath(String downloadPath) {
        this.downloadPath = downloadPath;
    }
 
    public String getUploadPath() {
        return uploadPath;
    }
 
    public void setUploadPath(String uploadPath) {
        this.uploadPath = uploadPath;
    }
 
    public String getSharePath() {
        return sharePath;
    }
 
    public void setSharePath(String sharePath) {
        this.sharePath = sharePath;
    }
 
    public String getTempPath() {
        return tempPath;
    }
 
    public void setTempPath(String tempPath) {
        this.tempPath = tempPath;
    }
 
    public String getDruidUser() {
        return druidUser;
    }
 
    public void setDruidUser(String druidUser) {
        this.druidUser = druidUser;
    }
 
    public String getDruidPwd() {
        return druidPwd;
    }
 
    public void setDruidPwd(String druidPwd) {
        this.druidPwd = druidPwd;
    }
}