从用户主目录导入资源

发布于 2024-12-23 08:17:06 字数 391 浏览 1 评论 0原文

我想从用户主目录导入 xml 资源:

<import resource="${user.home}/beans.xml" />

但这不起作用(占位符未被替换)。

PropertyPlaceholderConfigurer 没有给我一种方法来做到这一点?!有什么想法吗?

I'd like to import a xml resource from users home directory:

<import resource="${user.home}/beans.xml" />

But this one does not work (placeholder is not replaced).

The PropertyPlaceholderConfigurer does not give me a way to do that?! Any ideas?

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

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

发布评论

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

评论(1

无所的.畏惧 2024-12-30 08:17:06

您必须指定相同的绝对路径。

Resource res1 = ctx.getResource("file:///c:/test.txt");

You will have to specify the absolute path for the same.

Resource res1 = ctx.getResource("file:///c:/test.txt");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文