|
@@ -5,91 +5,97 @@ import org.springframework.stereotype.Component;
|
|
|
|
|
|
/**
|
|
|
* 读取项目相关配置
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
*/
|
|
|
@Component
|
|
|
@ConfigurationProperties(prefix = "ruoyi")
|
|
|
-public class RuoYiConfig
|
|
|
-{
|
|
|
- /** 项目名称 */
|
|
|
+public class RuoYiConfig {
|
|
|
+ /**
|
|
|
+ * 项目名称
|
|
|
+ */
|
|
|
private String name;
|
|
|
|
|
|
- /** 版本 */
|
|
|
+ /**
|
|
|
+ * 版本
|
|
|
+ */
|
|
|
private String version;
|
|
|
|
|
|
- /** 版权年份 */
|
|
|
+ /**
|
|
|
+ * 版权年份
|
|
|
+ */
|
|
|
private String copyrightYear;
|
|
|
|
|
|
- /** 实例演示开关 */
|
|
|
+ /**
|
|
|
+ * 实例演示开关
|
|
|
+ */
|
|
|
private boolean demoEnabled;
|
|
|
|
|
|
- /** 上传路径 */
|
|
|
+ /**
|
|
|
+ * 上传路径
|
|
|
+ */
|
|
|
private static String profile;
|
|
|
|
|
|
- /** 获取地址开关 */
|
|
|
+ /**
|
|
|
+ * 获取地址开关
|
|
|
+ */
|
|
|
private static boolean addressEnabled;
|
|
|
|
|
|
- /** 验证码类型 */
|
|
|
+ /**
|
|
|
+ * 验证码类型
|
|
|
+ */
|
|
|
private static String captchaType;
|
|
|
|
|
|
- public String getName()
|
|
|
- {
|
|
|
+ /**
|
|
|
+ * 服务器地址
|
|
|
+ */
|
|
|
+ private static String staticIp;
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
|
|
|
- public void setName(String name)
|
|
|
- {
|
|
|
+ public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
- public String getVersion()
|
|
|
- {
|
|
|
+ public String getVersion() {
|
|
|
return version;
|
|
|
}
|
|
|
|
|
|
- public void setVersion(String version)
|
|
|
- {
|
|
|
+ public void setVersion(String version) {
|
|
|
this.version = version;
|
|
|
}
|
|
|
|
|
|
- public String getCopyrightYear()
|
|
|
- {
|
|
|
+ public String getCopyrightYear() {
|
|
|
return copyrightYear;
|
|
|
}
|
|
|
|
|
|
- public void setCopyrightYear(String copyrightYear)
|
|
|
- {
|
|
|
+ public void setCopyrightYear(String copyrightYear) {
|
|
|
this.copyrightYear = copyrightYear;
|
|
|
}
|
|
|
|
|
|
- public boolean isDemoEnabled()
|
|
|
- {
|
|
|
+ public boolean isDemoEnabled() {
|
|
|
return demoEnabled;
|
|
|
}
|
|
|
|
|
|
- public void setDemoEnabled(boolean demoEnabled)
|
|
|
- {
|
|
|
+ public void setDemoEnabled(boolean demoEnabled) {
|
|
|
this.demoEnabled = demoEnabled;
|
|
|
}
|
|
|
|
|
|
- public static String getProfile()
|
|
|
- {
|
|
|
+ public static String getProfile() {
|
|
|
return profile;
|
|
|
}
|
|
|
|
|
|
- public void setProfile(String profile)
|
|
|
- {
|
|
|
+ public void setProfile(String profile) {
|
|
|
RuoYiConfig.profile = profile;
|
|
|
}
|
|
|
|
|
|
- public static boolean isAddressEnabled()
|
|
|
- {
|
|
|
+ public static boolean isAddressEnabled() {
|
|
|
return addressEnabled;
|
|
|
}
|
|
|
|
|
|
- public void setAddressEnabled(boolean addressEnabled)
|
|
|
- {
|
|
|
+ public void setAddressEnabled(boolean addressEnabled) {
|
|
|
RuoYiConfig.addressEnabled = addressEnabled;
|
|
|
}
|
|
|
|
|
@@ -101,43 +107,46 @@ public class RuoYiConfig
|
|
|
RuoYiConfig.captchaType = captchaType;
|
|
|
}
|
|
|
|
|
|
+ public static String getStaticIp() {
|
|
|
+ return staticIp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStaticIp(String staticIp) {
|
|
|
+ RuoYiConfig.staticIp = staticIp;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 获取导入上传路径
|
|
|
*/
|
|
|
- public static String getImportPath()
|
|
|
- {
|
|
|
+ public static String getImportPath() {
|
|
|
return getProfile() + "/import";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 获取头像上传路径
|
|
|
*/
|
|
|
- public static String getAvatarPath()
|
|
|
- {
|
|
|
+ public static String getAvatarPath() {
|
|
|
return getProfile() + "/avatar";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 获取下载路径
|
|
|
*/
|
|
|
- public static String getDownloadPath()
|
|
|
- {
|
|
|
+ public static String getDownloadPath() {
|
|
|
return getProfile() + "/download/";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 获取上传路径
|
|
|
*/
|
|
|
- public static String getUploadPath()
|
|
|
- {
|
|
|
+ public static String getUploadPath() {
|
|
|
return getProfile() + "/upload";
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 获取系统生成二维码保存路径
|
|
|
*/
|
|
|
- public static String getUploadQrPath()
|
|
|
- {
|
|
|
+ public static String getUploadQrPath() {
|
|
|
return getProfile() + "/qrUpload";
|
|
|
}
|
|
|
}
|