Tomcat 7和shared.loader问题

发布于 2024-12-06 12:40:29 字数 359 浏览 0 评论 0原文

我正在使用位于 的属性文件的自定义目录

${catalina.home}/conf/properties

,为了将其添加到我编辑的 ctalina.properties 并添加的类路径中,

shared.loader=${catalina.home}/conf/properties

但是当我尝试通过侦听器读取它们时,无法访问该目录的内容:

MyListener.class.getResourceAsStream("/sample.props")

我很可能有这里误解了一些东西。任何帮助将不胜感激。

I am using a custom directory for properties files located at

${catalina.home}/conf/properties

and in order to add it to the classpath i edited ctalina.properties and added

shared.loader=${catalina.home}/conf/properties

But contents of this directory are not accessible when I try to read them from a listener via:

MyListener.class.getResourceAsStream("/sample.props")

I most probably have misunderstood something here. Any help would be greatly appreciated.

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

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

发布评论

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

评论(2

暗恋未遂 2024-12-13 12:40:29

使用

Thread.currentThread().getContextClassLoader()
    .getResourceAsStream("/sample.props");

Use

Thread.currentThread().getContextClassLoader()
    .getResourceAsStream("/sample.props");
愚人国度 2024-12-13 12:40:29

为我工作:Thread.currentThread().getContextClassLoader()
.getResourceAsStream("sample.props");

Worked for me with : Thread.currentThread().getContextClassLoader()
.getResourceAsStream("sample.props");

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