Eclipse 中的外部工具启动配置在哪里

发布于 2024-07-12 11:18:16 字数 179 浏览 6 评论 0原文

我通常为了好玩而安装和卸载不同版本的 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 技术交流群。

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

发布评论

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

评论(1

も星光 2024-07-19 11:18:16

正如我在这个问题“哪些 eclipse 文件属于版本控制”中所说,.launch xml 文件(启动器定义)位于

[eclipse-workspace]\.metadata\.plugins\org.eclipse.debug.core\.launches

您实际上可以将它们移动到您的项目目录
当您的项目刷新时,这些配置将显示在“运行配置”对话框中。
这样,这些启动参数文件也可以管理到其他项目文件中的 VCS,而不是隐藏在工作区元数据区域中。

警告:请在“运行/启动/启动配置”首选项面板中取消选中“删除关联资源时删除配置”选项:软删除项目以便再次将其导入是很常见的,强制重新初始化 Eclipse 元数据,...但是此选项,如果选中,将删除您的详细启动参数!)

As I said in this question "Which eclipse files belong under Version Control", the .launch xml files (launcher definition) are found in

[eclipse-workspace]\.metadata\.plugins\org.eclipse.debug.core\.launches

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!)

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