| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- package com.agileboot.common.config;
- import com.agileboot.common.constant.Constants;
- import java.io.File;
- import lombok.Data;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.stereotype.Component;
- /**
- * 读取项目相关配置
- * TODO 移走 不合适放在这里common包底下
- * @author valarchie
- */
- @Component
- @ConfigurationProperties(prefix = "agileboot")
- @Data
- public class AgileBootConfig {
- /**
- * 项目名称
- */
- private String name;
- /**
- * 版本
- */
- private String version;
- /**
- * 版权年份
- */
- private String copyrightYear;
- /**
- * 实例演示开关
- */
- private static boolean demoEnabled;
- /**
- * 上传路径
- */
- private static String fileBaseDir;
- /**
- * 获取地址开关
- */
- private static boolean addressEnabled;
- /**
- * 验证码类型
- */
- private static String captchaType;
- /**
- * rsa private key 静态属性的注入!! set方法一定不能是static 方法
- */
- private static String rsaPrivateKey;
- private static String apiPrefix;
- public static String getFileBaseDir() {
- return fileBaseDir;
- }
- public void setFileBaseDir(String fileBaseDir) {
- AgileBootConfig.fileBaseDir = fileBaseDir + File.separator + Constants.RESOURCE_PREFIX;
- }
- public static String getApiPrefix() {
- return apiPrefix;
- }
- public void setApiPrefix(String apiDocsPathPrefix) {
- AgileBootConfig.apiPrefix = apiDocsPathPrefix;
- }
- public static boolean isAddressEnabled() {
- return addressEnabled;
- }
- public void setAddressEnabled(boolean addressEnabled) {
- AgileBootConfig.addressEnabled = addressEnabled;
- }
- public static String getCaptchaType() {
- return captchaType;
- }
- public void setCaptchaType(String captchaType) {
- AgileBootConfig.captchaType = captchaType;
- }
- public static String getRsaPrivateKey() {
- return rsaPrivateKey;
- }
- public void setRsaPrivateKey(String rsaPrivateKey) {
- AgileBootConfig.rsaPrivateKey = rsaPrivateKey;
- }
- public static boolean isDemoEnabled() {
- return demoEnabled;
- }
- public void setDemoEnabled(boolean demoEnabled) {
- AgileBootConfig.demoEnabled = demoEnabled;
- }
- }
|