如何将一个目录添加到近百个Eclipse运行配置中?
我有很多项目、单元测试等。几乎有一百个,我不是在开玩笑。 单击“运行配置”、“类路径”、“高级”、“添加文件夹”一百次并不是我乐意做的事情。有没有像 Ctrl-A 然后一次这样更快的方法。好吧,它不能与 Crtl-A 一起使用......
I have many projects, unit tests etc. Almost a hundred and I am not joking.
Clicking 'Run Configurations', 'Classpath', 'Advanced', 'Add Folder' a hundred times is not what I would be glad to do. Is there any quicker way like Ctrl-A and then once. Well, it does not work with Crtl-A though...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将运行配置保存到启动文件中。之后您可以手动或以编程方式编辑此文件。这可能比单击...更容易一些。
You could save the Run Configuration to a launch file. Afterwards you can edit this file manually or programmatically. This might be a little easier than clicking...
您的运行配置将作为
.launch
文件保存在工作区的子文件夹中:您可以使用良好的文本编辑器轻松地在这些文件中查找/替换您想要的内容。
Your Run Configurations are saved as
.launch
files in a subfolder of your workspace:You can easily find/replace what you want in those file using a good text editor.
查看 Eclipse 工作区中的
/.metadata/.plugins/org.eclipse.debug.core/.launches/*.launch
文件。这些是定义您的启动的 XML 文件。使用文本编辑器编辑它们,然后重新启动 Eclipse。您需要更改 org.eclipse.jdt.launching.CLASSPATH 条目。
Look in your Eclipse workspace, in your
<workspace>/.metadata/.plugins/org.eclipse.debug.core/.launches/*.launch
files. These are XML file which define your launch. Edit them with a text editor, and then restart Eclipse.You'll need to change the org.eclipse.jdt.launching.CLASSPATH entry.