XML DAO 示例
我不确定如何编写 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
直接把路径传入就行了?
编辑——或者如果它是常量,只需将 DAO 类层次结构放入某处,或者您可以使用属性对其进行配置。像这样的事情不应该让你放慢脚步——做一些有效的事情,并在需要时重构......
just pass the path in?
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...
如果该值是常量,则将其设为私有静态最终字符串。例如,如果它可以根据您的部署环境(开发/测试/产品)进行更改,您可以使用 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.