JAR 应用程序的配置

发布于 2024-11-02 05:43:38 字数 462 浏览 0 评论 0原文

我想像 JAR 文件一样分发我的应用程序并通过外部文件进行配置,因此最终的目录结构将如下所示:

--conf
----log4j.properties
    ...
--lib
----log4j.jar
    ...
--myApp.jar
--run.bat

在 run.bat 中,我使用以下命令启动我的应用程序:

java -jar myApp.jar

在 MANIFEST.MF 中,我有类路径条目:

Class-Path: conf/log4j.properties lib/log4j.jar

但是应用程序无法找到其配置文件(但它能够找到库!)。我缺少什么?无论如何,将配置文件外部化到与“主”JAR 相关的文件夹中是一个好习惯吗?

编辑: 我将配置文件外部化的目的是这样可以更轻松地编辑它们。 编辑:配置-> conf(问题描述中的拼写错误)

I want to distribute my application like a JAR file and configurable by external files, so the final directory structure will looks like:

--conf
----log4j.properties
    ...
--lib
----log4j.jar
    ...
--myApp.jar
--run.bat

In the run.bat I start my application with:

java -jar myApp.jar

In the MANIFEST.MF I have class-path entry:

Class-Path: conf/log4j.properties lib/log4j.jar

But the application is not able to locate its configuration files (but it is able to locate the libs!). What I am missing? Anyway is it a good practice to externalize configuration files to a folder which are relevant to the 'main' JAR?

EDIT:
My intention to externalize the configuration files is that in this way they can be edited more easily.
EDIT: config -> conf (typo in the description of the issue)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嘿咻 2024-11-09 05:43:38

类路径应该是:

Class-Path: conf/ lib/log4j.jar

The classpath should be:

Class-Path: conf/ lib/log4j.jar
墨离汐 2024-11-09 05:43:38

是否因为您的配置文件位于“conf”目录中并且您的类路径正在寻找“config”目录? :)

Is it because you have your config files in the "conf" directory and your classpath is looking for a "config" directory? :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文