0

我有一个应用程序的 3 个 .properties 文件。每个文件都用于开发、测试和生产环境。将这三个文件合并为一个文件是否可能(并且实用)?怎么做到呢?还是最好将每个文件保存在自己的环境中?这是代码。

enter code here
lock-timeout=7200000
usesLogin=true
uses-hardlocks=false
use-nested-roles=1

# Password Change URL for VSRD, VSRT and VSRP (in that order)
#pwchange-url=https://iteodova-md.dev.fema.net/va-npsc/pwchange/default.asp
#pwchange-url=https://iteodova-md.dev.fema.net/va-npsc/pwchange_tdl/default.asp
 pwchange-url=https://iteodova-md.fema.net/va-npsc/pwchange/default.asp

# Database Connectivity and User Session Management

jdbc-driverClassName=oracle.jdbc.driver.OracleDriver
#jdbc-url=jdbc:oracle:thin:@wnli3d3.fema.net:1521:vsrd
#jdbc-url=jdbc:oracle:thin:@wnli3d2.fema.net:1521:vsrt
#jdbc-url=jdbc:oracle:thin:@mwli3d1.fema.net:1521:vsrp
 jdbc-url=jdbc:oracle:thin:@wnli3d4.fema.net:1521:vsrp
4

4 回答 4

1

您可以使用Apache 的Commons Configuration

例如:

CompositeConfiguration config = new CompositeConfiguration();
config.addConfiguration(new PropertiesConfiguration("color.properties");
config.addConfiguration(new PropertiesConfiguration("application.properties"));

或者包括在这个例子中:

# usergui.properties

include = colors.properties
include = sizes.properties
于 2012-08-28T12:54:50.730 回答
0

最好将属性保存在单独的文件中(即用于测试、登台、生产等)。它们之间的切换可以通过运行带有 -D 选项的 java 来完成:

java -DpropertiesType=test ...

属性重载和合并在Spring 框架中有效地完成。

你可以看看这个例子。

祝你好运!

于 2012-08-28T13:09:10.743 回答
0

我同意最好将属性保存在单独的文件中的想法。如果您使用环境变量或配置文件(如果您使用的是 Spring),则可以将文件物理地分隔到它们自己的目录中,例如“src/main/resources”。然后,您只需要根据您的环境变量或配置文件设置读取正确的内容。如何执行此操作取决于 Java 堆栈的具体情况。例如,使用 Spring 和 Java Config,您可以:

@Configuration
public class MyMainConfig {

    public MyMainConfig() {
        super();
    }

    @Configuration
    @Profile("dev")
    @PropertySource({ "classpath:/dev/myPropertyFileName.properties" })
    static class Dev
    {   }

    @Configuration
    @Profile("test")
    @PropertySource({ "classpath:/test/myPropertyFileName.properties" })
    static class Test
    {  }

    @Configuration
    @Profile("prod")
    @PropertySource({ "classpath:/prod/myPropertyFileName.properties" })
    static class Prod
    {    }
}
于 2012-08-28T14:02:42.033 回答
0

您可以通过这种方式将属性与资格一起使用。

在以下代码中,您可以拥有

key=value

作为默认值,就像你现在做的那样

key.ENVIRON=value

如果它需要针对该环境有所不同。

如您所见,代码非常短,可以轻松比较不同的配置,因为它们都在一个地方。

如果您有一个复杂的系统,您可以使用 ENVIRON.TYPE.INSTANCE 扩展这种方法。

public class EnvironProperties extends Properties {
    private final String environ;

    public EnvironProperties(String environ) {
        this.environ = environ;
    }

    @Override
    public String getProperty(String key) {
        String property = super.getProperty(key + "." + environ);
        return property == null ? super.getProperty(key) : property;
    }

    public String getEnviron() {
        return environ;
    }

    public static void main(String... args) throws IOException {
        String properties = "lock-timeout=7200000\n" +
                "usesLogin=true\n" +
                "uses-hardlocks=false\n" +
                "use-nested-roles=1\n" +
                "\n" +
                "# Password Change URL for VSRD, VSRT and VSRP (in that order)\n" +
                "pwchange-url=https://iteodova-md.dev.fema.net/va-npsc/pwchange/default.asp\n" +
                "pwchange-url.PROD=https://iteodova-md.fema.net/va-npsc/pwchange/default.asp\n" +
                "\n" +
                "# Database Connectivity and User Session Management\n" +
                "\n" +
                "jdbc-driverClassName=oracle.jdbc.driver.OracleDriver\n" +
                "jdbc-url.TEST=jdbc:oracle:thin:@wnli3d3.fema.net:1521:vsrd\n" +
                "jdbc-url.DEV=jdbc:oracle:thin:@wnli3d2.fema.net:1521:vsrt\n" +
                "jdbc-url.PROD=jdbc:oracle:thin:@mwli3d1.fema.net:1521:vsrp\n" +
                "jdbc-url=jdbc:oracle:thin:@wnli3d4.fema.net:1521:vsrp";

        EnvironProperties dev = new EnvironProperties("DEV");
        EnvironProperties test = new EnvironProperties("TEST");
        EnvironProperties prod = new EnvironProperties("PROD");

        for (EnvironProperties ep : new EnvironProperties[]{dev, test, prod}) {
            System.out.println("[" + ep.getEnviron() + "]");
            ep.load(new StringReader(properties));
            for (String prop : "uses-hardlocks,pwchange-url,jdbc-url".split(","))
                System.out.println(prop + "= " + ep.getProperty(prop));
        }
    }
}
于 2012-08-28T13:06:20.950 回答