From 1d53dd8f501a98ddcce8146443b51b357ef5f9b1 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 29 十二月 2022 16:55:46 +0800 Subject: [PATCH] 1 --- src/main/java/com/lf/server/config/PropertiesConfig.java | 16 +++------------- 1 files changed, 3 insertions(+), 13 deletions(-) diff --git a/src/main/java/com/lf/server/config/PropertiesConfig.java b/src/main/java/com/lf/server/config/PropertiesConfig.java index 9c20888..3a8b1ac 100644 --- a/src/main/java/com/lf/server/config/PropertiesConfig.java +++ b/src/main/java/com/lf/server/config/PropertiesConfig.java @@ -8,12 +8,10 @@ * @author WWW */ @Configuration +@SuppressWarnings("AlibabaCommentsMustBeJavadocFormat") public class PropertiesConfig { @Value("${sys.path.download}") private String downloadPath; - - @Value("${sys.path.export}") - private String exportPath; @Value("${sys.path.upload}") private String uploadPath; @@ -24,10 +22,10 @@ @Value("${sys.path.temp}") private String tempPath; - @Value("${spring.datasource.druid.stat-view-servlet.login-username}") + // @Value("${spring.datasource.druid.stat-view-servlet.login-username}") private String druidUser; - @Value("${spring.datasource.druid.stat-view-servlet.login-password}") + // @Value("${spring.datasource.druid.stat-view-servlet.login-password}") private String druidPwd; public String getDruidUser() { @@ -52,14 +50,6 @@ public void setDownloadPath(String downloadPath) { this.downloadPath = downloadPath; - } - - public String getExportPath() { - return exportPath; - } - - public void setExportPath(String exportPath) { - this.exportPath = exportPath; } public String getUploadPath() { -- Gitblit v1.9.3