Eclipse 中的外部工具启动配置在哪里
我通常为了好玩而安装和卸载不同版本的 Eclipse。 我不想安装很多插件。 我更喜欢从全新安装开始测试 IDE。
当我必须配置我经常使用的所有外部工具(例如运行 jconsole)时,问题就出现了。
我还想备份我的启动配置。
您知道 Eclipse 在哪里保存此启动配置吗?
I usually install and uninstall different versions of Eclipse for fun. I don't want to install many plugins. I prefer to start with fresh install to test the IDE.
The problems comes when I have to config all the external tools that I always use (E.g. run jconsole).
Also I want to backup my launch configurations.
Do you know where Eclipse save this launch configurations?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如我在这个问题“哪些 eclipse 文件属于版本控制”中所说,.launch xml 文件(启动器定义)位于
您实际上可以将它们移动到您的项目目录:
当您的项目刷新时,这些配置将显示在“运行配置”对话框中。
这样,这些启动参数文件也可以管理到其他项目文件中的 VCS,而不是隐藏在工作区元数据区域中。
警告:请在“运行/启动/启动配置”首选项面板中取消选中“删除关联资源时删除配置”选项:软删除项目以便再次将其导入是很常见的,强制重新初始化 Eclipse 元数据,...但是此选项,如果选中,将删除您的详细启动参数!)
As I said in this question "Which eclipse files belong under Version Control", the .launch xml files (launcher definition) are found in
You can actually move them into your project directory:
when your project is refreshed, those configurations will be displayed in the "Run configuration" dialog.
That way, those launch parameter files can be also managed into a VCS within your other project files, instead being buried within the workspace metadata area.
Warning: do uncheck the option "Delete configurations when associated resource is deleted" in the Run/Launching/Launch Configuration preference panel: it is common to soft-delete a project in order to import it back again, to force a reinitialization of the eclipse metadata,... but this option, if checked, will removed your detailed launch parameters!)