| | |
| | | @Configuration |
| | | @SuppressWarnings("AlibabaCommentsMustBeJavadocFormat") |
| | | public class PropertiesConfig { |
| | | @Value("${sys.fme.url}") |
| | | private String fmeUrl; |
| | | |
| | | @Value("${sys.path.download}") |
| | | private String downloadPath; |
| | | |
| | |
| | | // @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; |
| | | } |
| | | @Value("${sys.tile_path}") |
| | | private String tilePath; |
| | | |
| | | 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; |
| | | public String getTilePath() { |
| | | return tilePath; |
| | | } |
| | | } |