| | |
| | | */ |
| | | @Configuration |
| | | public class PropertiesConfig { |
| | | @Value("${sys.path.import}") |
| | | private String importPath; |
| | | @Value("${sys.path.download}") |
| | | private String downloadPath; |
| | | |
| | | @Value("${sys.path.export}") |
| | | private String exportPath; |
| | |
| | | this.druidPwd = druidPwd; |
| | | } |
| | | |
| | | public String getImportPath() { |
| | | return importPath; |
| | | public String getDownloadPath() { |
| | | return downloadPath; |
| | | } |
| | | |
| | | public void setImportPath(String importPath) { |
| | | this.importPath = importPath; |
| | | public void setDownloadPath(String downloadPath) { |
| | | this.downloadPath = downloadPath; |
| | | } |
| | | |
| | | public String getExportPath() { |