java如何加载不同环境的properties配置文件?
2021-06-18 14:18
标签:编译 inpu profile 环境 files rect tcl his ssl 写一个加载配置文件的类: env.properties的内容 尝试把配置文件路经的值打印出来如下: 工程目录/target/classes/env.properties 可以看到加载的是编译之后的配置文件 如何使用配置类? 如果环境中用到不同的配置文件,可以在pom.xml中配置不同的profile,使用mvn 编译的时候使用-P选项指定相应的profile文件,就会把指定profile下面的配置文件进行编译 //使用-P选项指定id=test的这个profile,编译完之后可以看到会把src/test/profiles/test下面的env.properties文件编译到target/classes文件夹下面 mvn clean compile -Ptest java如何加载不同环境的properties配置文件? 标签:编译 inpu profile 环境 files rect tcl his ssl 原文地址:https://www.cnblogs.com/zhaijing/p/9706941.htmlimport java.io.FileInputStream;
import java.io.InputStream;
import java.util.Properties;
public class Config{
private static final Config_path="env.properties";
private Properties propertyFile=new Properties();
public static final String server="server";
/**
*构造类时加载配置文件
**/
public Config(){
try{
String path=this.getClass.getClassLoader().getResource(this.Config_path).getPath();
InputStream in=new FileInputStream(path);
propertyFile.load(in);
}catch(Exception e){
e.printStackTrace;
}
}
public String getServer(){
return propertyFile.getProperty(server);
}
}
server=http://www.baidu.com
Config config=new Config();
String server=config.getServer();
profiles>
profile>
id>preonlineid>
build>
resources>
resource>
directory>src/test/profiles/preonlinedirectory>
resource>
resources>
build>
profile>
profile>
id>prodid>
activation>
activeByDefault>falseactiveByDefault>
activation>
build>
resources>
resource>
directory>src/test/profiles/proddirectory>
resource>
resources>
build>
profile>
profile>
id>testid>
activation>
activeByDefault>trueactiveByDefault>
activation>
build>
resources>
resource>
directory>src/test/profiles/testdirectory>
resource>
resources>
build>
profile>
profiles>
文章标题:java如何加载不同环境的properties配置文件?
文章链接:http://soscw.com/index.php/essay/95520.html