导出的 Eclipse RCP 应用程序读取本地属性文件
我开发了一个从 .properties 文件读取数据库连接的插件,但导出插件后,.properties 文件被包装在 jar 插件内,无法即时更改。
做了一些研究,一些人建议创建片段或功能来补充动态读取属性文件,并指向
尝试使用 Eclipse 来创建片段,但在如何创建功能 t 方面迷失了方向
I developing a plugin which reads from a .properties file for the database connection, but after exporting the plugin, the .properties file is wrapped up inside the jar'ed plugin and not able to be changed on the fly.
did some research, some suggested creating fragments or features to compliment the reading of the properties file on the fly and points to
tried using eclipse to creature fragments but am lost as in how to create a feature t
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将属性文件安装在目标 Eclipse 安装的根目录(或 RCP 应用程序的根目录)中。然后,您可以使用
Platform.getInstallLocation()
访问它。关于创建功能,Eclipse RCP 教程“创建富客户端应用程序”包含标题为“定义基于功能的产品”的部分。
You could install the properties file in the root of the target Eclipse installation (or the root of your RCP application). You can then access it using
Platform.getInstallLocation()
.With regards to creating a feature, the Eclipse RCP tutorial "Creating a Rich Client Application" contains a section entitled "Define a feature-based product".