gpt4 book ai didi

documentum - dfc.properties 的替代品

转载 作者:行者123 更新时间:2023-12-01 10:45:30 30 4
gpt4 key购买 nike

我们正在从 Java 程序(使用 dfc.jar)连接到 documentum 服务器以提取文档。为了连接到服务器,它要求我们在类路径中提供 dfc.properties。我们已经有一个主属性文件,所以希望避免再有一个。相反,我们希望将属性放在其他属性文件中,然后在连接到 documentum 服务器时使用它们。我可以从 Java 代码中找到如何使用 docbroker 主机和端口,即使用 IDfTypedObject。

IDfLoginInfo loginInfoObj = clientX.getLoginInfo();
loginInfoObj.setUser(user);
loginInfoObj.setPassword(pwd);

IDfClient client = new DfClient();

IDfTypedObject cfg = client.getClientConfig();
cfg.setString("primary_host", "myhost");
cfg.setInt("primary_port", myport);

IDfSession docbase_session = client.newSession(docbase, loginInfoObj);

像primary_host和primary_port是在代码中设置的,有没有办法通过代码设置,dfc.properties中的以下属性? dfc.globalregistry.repository dfc.globalregistry.用户名 dfc.globalregistry.password

最佳答案

DFC 属性必须在其自己的文件中。但是,此文件可以驻留在应用程序本身之外。

选项 1:包括

在您的类路径中的dfc.properties 开头放置一个include 语句以指向外部配置,如下所示:

#include /path/to/external/dfc.properties

您甚至可以通过在应用的 dfc.properties 中包含多个文件和/或附加/覆盖来使用混合方法:

#include /path/to/common/dfc.properties
#include /path/to/more/specific/dfc.properties # may or may not override
<app specific parameters go here> # may or may not override

选项2:环境变量

设置环境变量 dfc.properties.file 指向您的外部dfc.properties。将您的应用服务器的启动更改为如下内容:

java ... –Ddfc.properties.file=/path/to/external/dfc.properties ...

如果您使用的是 Tomcat,则可以通过在操作系统本身上设置一个系统变量来实现:

set JAVA_OPTS=–Ddfc.properties.file=/path/to/external/dfc.properties

总结

我不建议在代码中设置 DFC 参数。最佳实践是在应用程序之外有一个专用的配置文件。请注意,您的执行环境 (JVM) 必须能够根据需要访问文件系统。这适用于上述两种选择。

关于documentum - dfc.properties 的替代品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26929066/

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