ConfigUtil.java 343 Bytes
package com.bsth.util;

public class ConfigUtil {

	static Tools tools;
	
	static{
		tools = new Tools("application.properties");
		String active = tools.getValue("spring.profiles.active");
		tools = new Tools("application-"+active+".properties");
	}
	
	public static String get(String key){
		return tools.getValue(key);
	}
}