如何在 Struts 2 中进行自定义配置?

发布于 2024-12-05 20:22:18 字数 207 浏览 0 评论 0原文

我喜欢为我的键值对创建 XML 或属性文件。

例如,我喜欢将 url 保存在 XML 或属性文件中,然后在我的类中获取它的值。

我知道我可以创建一个 XML 文件,然后使用 XML 解析器来执行此操作,但是在 Struts 2 中是否有标准的方法来执行此操作?

我对 Struts 2 还很陌生……所以请随意提出任何建议!

预先感谢您!

I like to create an XML or a property file for my key and value pairs.

For example, I like to save a url in an XML or a property file and then get the value of it in my classes.

I know that I can create an XML file and then use an XML parser to do it, but is there a standard way of doing it in Struts 2?

I'm pretty new to Struts 2..so feel free to suggest anything!

Thank you in advances!

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

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

发布评论

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

评论(1

怪我闹别瞎闹 2024-12-12 20:22:18

如果我正确理解了你的问题,我认为 struts2 对此没有什么特殊要求,你可以

Properties props = new Properties();
props.load( new FileInputStream("url.properties"));
...
props.get("someurl");

在 url.properties 中使用标准 java.util.Properties

someurl=http://someurlsite.com/some/url

If I have understood your question correctly, I don't think there is anything special required in struts2 for this, you can use standard java.util.Properties

Properties props = new Properties();
props.load( new FileInputStream("url.properties"));
...
props.get("someurl");

in your url.properties

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