在有些情况下一些变量需要在整个项目中都使用到,例如token的验证等都可以将用户信息放入全局配置变量中但是内容不要太大如果太大的话占用系统的资源导致系统变慢,请看下面案例:
/**
* 一些可以全局配置的变量,内部没有使用spring,只好借助这个类来传递
* spring 初始化的时候给这个对象设置好适当的值
*/
public class GlobalSetting {
private static Logger logger = LoggerFactory.getLogger(GlobalSetting.class);
private static GlobalSetting instance = new GlobalSetting(); // 定义一个单例对象(饿汉式)推荐用这个
public static final String CURRENT_VERSION_FILE = "currentVersion.txt";
private String modelBasePath;
private String targetVersion;
private HashMap<String ,String> resourceMap;
//单例对象的构造方法 (构造函数私有,确保每次都只创建一个,避免重复创建。)
private GlobalSetting() {
}
//用来获取唯一的单例对象
public static GlobalSetting getInstance() {
return instance;
}
//get , set方法
public String getModelBasePath() {
return modelBasePath;
}
public void setModelBasePath(String modelBasePath) {
this.modelBasePath = modelBasePath;
}
public String getTargetVersion() {
return targetVersion;
}
public void setTargetVersion(String targetVersion) {
this.targetVersion = targetVersion;
}
* 从保存的 文件里 ,取 当前的版本号
* @param modelBasePath
* @return
*/
private String getCurrentVersion(String modelBasePath) {
String version = null;
try {
File file = new File(modelBasePath+ File.separator + CURRENT_VERSION_FILE);
List<String> lines = Files.readAllLines(Paths.get(file.getAbsolutePath()), StandardCharsets.UTF_8);
if(lines != null && lines.size() > 0) {
version = lines.get(0);
}
}catch (IOException e){
//e.printStackTrace();
logger.debug("GlobalSetting -> getCurrentVersion e: {}",e.getCause());
}
version = getHopeModelBasePath(modelBasePath,version,LATEST);
return version;
}
private static boolean isInteger(String str) {
Pattern pattern = Pattern.compile("^[-\\+]?[\\d]*$");
return pattern.matcher(str).matches();
}
public String getSkillVersion() {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
return sdf.format(date);
}
}
调用(获取到全局定义的resourceMap):
GlobalSetting.getInstance();获取到当前
HashMap map = GlobalSetting.getInstance().getresourceMap();
修改:
map.put("userId":"userToken");
初始化(在springBoot初始化的一个类里面加上如下):
@PostConstruct
public void init() {
//启动的时候,设置默认的版本号 , 初始化的时候 TargetVersion 有值了 , 如果没有值 默认取以前的
GlobalSetting.getInstance().setModelBasePath("path");
String currentVersion = GlobalSetting.getInstance().getLatestModelBasePath(featureSwitch.modelBasePathVersion);
if (currentVersion != null) {
logger.debug("BaseService -> init 版本号 targetversion {} ", currentVersion);
GlobalSetting.getInstance().setTargetVersion(currentVersion);
}
}