如何读取属性文件并将数据插入到 XML 文件中?
我有一个属性文件,其中包含与数据库连接的数据。另外,我有一个休眠配置文件。我想使用属性文件中的属性配置休眠文件。我怎样才能读取属性并将它们插入到 XML 文件中?我可以通过 System.getProperty(name) 读取属性。
谢谢!
I have a properties file with data to connect with database. Also, I have a hibernate config file. I would like to config the hibernate file with properties from properties file. How could I read the properties and insert them into XML file? I can read the properties via System.getProperty(name).
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
愿这应该是一个好的开始:
May this should be a good start:
除非你必须重复执行此操作,否则我会使用这种古老的编程技术:
Unless you have to do this repeatedly, I'd use this ancient programming technique:
如果我正确理解文档,它应该是开箱即用的:
Hibernate 参考
3.7。 XML配置文件
因此,您只需要 hibernate 属性文件和 hibernate.cfg.xml。如果您没有在 hibernate.cfg.xml 中设置值,那么它们将从属性文件中获取。 -- 我没有证明这一点,但这就是我理解文档的方式。
If I understand the documentation right, it should be work out of the box:
Hibernate reference
3.7. XML configuration file
So you only need the hibernate properties file and the hibernate.cfg.xml. If you do not set the values in hibernate.cfg.xml, then they are taken from the properties file. -- I did not proved that, but that is the way I understand the documentation.