XML DAO 示例

发布于 2024-10-16 14:46:06 字数 119 浏览 1 评论 0原文

我不确定如何编写 DAO 来将信息写入 XML 文件。我知道如何使用 Sax 和 JDOM,但我想知道如何初始化 DAO 来设置 XML 文件路径。 CRUD 风格的方法应该不是问题,但如果您有任何进一步的建议,请不要犹豫。

I'm unsure of how I could write a DAO to write information to XML files. I know how to use Sax and JDOM but what I'd like to know is how the DAO could be initialized to set the XML file path. The CRUD-style methods shouldn't be an issue but if you have any further suggestions please don't hesitate.

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

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

发布评论

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

评论(2

吖咩 2024-10-23 14:46:06

直接把路径传入就行了?

interface thingyDAO {

    public void save(path, xmlStringOrWhatever)

    ....
}

编辑——或者如果它是常量,只需将 DAO 类层次结构放入某处,或者您可以使用属性对其进行配置。像这样的事情不应该让你放慢脚步——做一些有效的事情,并在需要时重构......

just pass the path in?

interface thingyDAO {

    public void save(path, xmlStringOrWhatever)

    ....
}

EDIT -- or if it is constant, just put in the DAO class hierarchy somewhere, or you could configure it with properties. Something like this should not slow you down -- do something that works and refactor when you need to...

江南月 2024-10-23 14:46:06

如果该值是常量,则将其设为私有静态最终字符串。例如,如果它可以根据您的部署环境(开发/测试/产品)进行更改,您可以使用 Spring 并使用参数注入值。可以使用字段、方法和构造函数来完成对单例的注入。

If the value is constant, make it a private static final String. If for example it could change based on your deployment environment (dev/test/prod) you could use Spring and inject the value using a parameter. Injection to singletons can be done using fields, methods and I believe constructors.

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