You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
971 B
57 lines
971 B
package com.ruoyi.common.config;
|
|
|
|
import lombok.Data;
|
|
import lombok.Getter;
|
|
import lombok.experimental.Accessors;
|
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
/**
|
|
* 读取项目相关配置
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
|
|
@Data
|
|
@Accessors(chain = true)
|
|
@Component
|
|
@ConfigurationProperties(prefix = "ruoyi")
|
|
public class RuoYiConfig {
|
|
|
|
/**
|
|
* 项目名称
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 版本
|
|
*/
|
|
private String version;
|
|
|
|
/**
|
|
* 版权年份
|
|
*/
|
|
private String copyrightYear;
|
|
|
|
/**
|
|
* 实例演示开关
|
|
*/
|
|
private boolean demoEnabled;
|
|
|
|
/**
|
|
* 缓存懒加载
|
|
*/
|
|
private boolean cacheLazy;
|
|
|
|
/**
|
|
* 获取地址开关
|
|
*/
|
|
@Getter
|
|
private static boolean addressEnabled;
|
|
|
|
public void setAddressEnabled(boolean addressEnabled) {
|
|
RuoYiConfig.addressEnabled = addressEnabled;
|
|
}
|
|
|
|
}
|