package com.matrix.core.tools;
|
|
import org.springframework.core.env.Environment;
|
|
/**
|
* 读取定义的属性文件
|
* @author JIANGYOUYAO
|
* @email 935090232@qq.com
|
*/
|
public class PropertiesUtil {
|
|
public static String getString(String key) {
|
Environment environment= WebUtil.getApplicationContext().getBean(Environment.class);
|
return environment.getProperty(key);
|
}
|
|
}
|