| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package com.zhongzheng.common.config;
- import lombok.Data;
- import lombok.Getter;
- import lombok.NoArgsConstructor;
- import lombok.experimental.Accessors;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * 读取项目相关配置
- *
- * @author zhongzheng
- */
- @Data
- @NoArgsConstructor
- @Accessors(chain = true)
- @Component
- @ConfigurationProperties(prefix = "zhongzheng")
- public class RuoYiConfig
- {
- /** 项目名称 */
- private String name;
- /** 版本 */
- private String version;
- /** 版权年份 */
- private String copyrightYear;
- /** 实例演示开关 */
- private boolean demoEnabled;
- /** 上传路径 */
- @Getter
- private static String profile;
- /** 获取地址开关 */
- @Getter
- private static boolean addressEnabled;
- public void setProfile(String profile)
- {
- RuoYiConfig.profile = profile;
- }
- public void setAddressEnabled(boolean addressEnabled)
- {
- RuoYiConfig.addressEnabled = addressEnabled;
- }
- /**
- * 获取头像上传路径
- */
- public static String getAvatarPath()
- {
- return getProfile() + "/avatar";
- }
- /**
- * 获取下载路径
- */
- public static String getDownloadPath()
- {
- return getProfile() + "/download/";
- }
- /**
- * 获取上传路径
- */
- public static String getUploadPath()
- {
- return getProfile() + "/upload";
- }
- }
|