疯狂的狮子li
2021-06-13 d98faaffee6627655bf584a79e968656012adf84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package com.ruoyi.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 ruoyi
 */
 
@Data
@NoArgsConstructor
@Accessors(chain = true)
@Component
@ConfigurationProperties(prefix = "ruoyi")
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";
    }
}