123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package com.lqkj.common.config;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * 读取项目相关配置
- *
- * @author lh
- */
- @Component
- @ConfigurationProperties(prefix = "lingwei")
- public class LingWeiConfig {
- /** 项目名称 */
- private String name;
- /** 版本 */
- private String version;
- /** 版权年份 */
- private String copyrightYear;
- /** 实例演示开关 */
- private boolean demoEnabled;
- /** 上传路径 */
- private static String profile;
- /** 获取地址开关 */
- private static boolean addressEnabled;
- public String getName()
- {
- return name;
- }
- public void setName(String name)
- {
- this.name = name;
- }
- public String getVersion()
- {
- return version;
- }
- public void setVersion(String version)
- {
- this.version = version;
- }
- public String getCopyrightYear()
- {
- return copyrightYear;
- }
- public void setCopyrightYear(String copyrightYear)
- {
- this.copyrightYear = copyrightYear;
- }
- public boolean isDemoEnabled()
- {
- return demoEnabled;
- }
- public void setDemoEnabled(boolean demoEnabled)
- {
- this.demoEnabled = demoEnabled;
- }
- public static String getProfile()
- {
- return profile;
- }
- public void setProfile(String profile)
- {
- LingWeiConfig.profile = profile;
- }
- public static boolean isAddressEnabled()
- {
- return addressEnabled;
- }
- public void setAddressEnabled(boolean addressEnabled)
- {
- LingWeiConfig.addressEnabled = addressEnabled;
- }
- /**
- * 获取导入上传路径
- */
- public static String getImportPath()
- {
- return getProfile() + "/import";
- }
- /**
- * 获取头像上传路径
- */
- public static String getAvatarPath()
- {
- return getProfile() + "/avatar";
- }
- /**
- * 获取下载路径
- */
- public static String getDownloadPath()
- {
- return getProfile() + "/download/";
- }
- /**
- * 获取上传路径
- */
- public static String getUploadPath()
- {
- return getProfile() + "/upload";
- }
- }
|