gpt4 book ai didi

Java : Where exactly the Properties would be configured?

转载 作者:行者123 更新时间:2023-11-28 22:45:08 24 4
gpt4 key购买 nike

在我的 Java 类中说 Props.java File 。我有这个静态 block ,如图所示

static
{
instanceName = System.getProperty("bayer.instanceName");
systemPath = System.getProperty("bayer.home");
if (systemPath == null)
systemPath = ".";
propsFile = new File(System.getProperty("bayer.home") + File.separator + "bayer.properties");
}

请告诉我这个属性 bayer.instanceName 和 bayer.home 在哪里定义?有关更多信息,我正在使用 Apache Tomcat 6.0 服务器和 Linux 环境。

最佳答案

系统属性在 java 命令行上使用 -Dpropertyname=value 语法设置,例如:

java -cp someclasspath -Dbayer.instanceName=foo com.mycompany.MyClass

参见 this answer了解更多信息。

关于Java : Where exactly the Properties would be configured?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8444896/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com