有两种情况的
配置后不需要更改的
直接使用静态块对静态属性赋值 filePaht为配置文件中的key
import java.util.Properties;
public class PropertiesUtil {
public static String FILE_PATH;
static {
String filename = "BaseConfig.properties";
Properties pro = new Properties();
try {
pro.load(PropertiesUtil.class.getClassLoader().getResourceAsStream(filename));
} catch (IOException e) {
e.printStackTrace();
}
FILE_PATH = pro.getProperty("filePaht");
}
}
配置后有可能会更改的
直接调方法去获取配置文件的值,key为配置文件中对应的键值
import java.util.Properties;
public class PropertiesUtil {
public static String getProperties (String key){
String filename = "BaseConfig.properties";
Properties pro = new Properties();
try {
pro.load(PropertiesUtil.class.getClassLoader().getResourceAsStream(filename));
} catch (IOException e) {
e.printStackTrace();
}
return pro.getProperty(key);
}
}
还有一种 这方法的好处是,既会在项目启动时就马上取值赋值,也可以实现不重启项目修改配置文件的,只要你做一个接口调一下init方法就可以了
import org.springframework.context.annotation.Configuration;
import javax.annotation.PostConstruct;
import java.io.IOException;
import java.util.Properties;
@Configuration
public class PropertiesUtil {
public static String FILE_PATH;
@PostConstruct
public void init (){
String filename = "BaseConfig.properties";
Properties pro = new Properties();
try {
pro.load(PropertiesUtil.class.getClassLoader().getResourceAsStream(filename));
} catch (IOException e) {
e.printStackTrace();
}
FILE_PATH = pro.getProperty("filePath");
}
}
PS:用在idea里配置的tomcat部署,修改配置文件,他是不生效的,需要打包到本地的tomcat里才会生效