How can I launch different workspaces with different sets of plugins?(如何使用不同的插件集启动不同的工作区?)
问题描述
当为不同的 SDK 使用不同的工作区时,例如应用引擎、安卓和基本的 Java 开发,如何确保在启动所需的工作空间时只加载所需的插件?
When using different workspaces for different SDKs, e.g. Appengine, Android & basic Java development, how can I make sure, only the required plugins are loaded when launching the desired workspace?
推荐答案
诀窍是指定不同的配置文件夹.启动 Eclipse 时使用 -configuration 参数.
The trick is to specify a different configuration folder. Use the -configuration argument when launching Eclipse.
默认情况下,您会得到如下内容:
By default, you get something like this:
eclipse/
plugins/
features/
configuration/
通过指定一个单独的配置文件夹,所有这 4 个文件夹将移动到一个新位置.我通常使用一个名为 configs 的文件夹,并在其下添加几个编号的文件夹.所以,我得到类似的东西:
By specifying a separate configuration folder, all those 4 folders will move to a new location. I usually use a folder called configs and add several numbered folders under it. So, I get something like:
eclipse/
plugins/
features/
configs/
c1/
plugins/
features/
configuration/
c2/
plugins/
features/
configuration/
为此,请使用参数 -configuration configs/c1/configuration.运行给定实例并安装插件时,它们将安装在相关位置.
To do that, use the argument -configuration configs/c1/configuration. When running a given instance and installing plugins, they will be installed in the relevant location.
您还可以添加 -data 参数并指定工作区文件夹位置,或者在 Eclipse 启动时选择它.
You can also add -data argument and specify the workspace folder location, or select it when Eclipse launches.
这篇关于如何使用不同的插件集启动不同的工作区?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用不同的插件集启动不同的工作区?
基础教程推荐
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
