How to configure two eclipse in one computer

I configure multiple eclipse, mainly to facilitate the joint debugging between different interfaces

My second eclipse is a direct copy of the first eclipse, so they use the same jdk and work space, then there will be problems with direct startup

In order for two eclipse to be used at the same time, only the following configuration steps are required

The first step: modify the ini file of eclipse

Add at the end of the configuration file

-vm
D:\soft\jdk1.8\bin\javaw.exe  (你自己jdk的安装路径)
Step 2: Restart eclipse. At this time, you will be prompted that the workspace conflicts, because the copied workspace is also the same. At this time, you only need to modify the location of the workspace.
The third step: configure jdk, tomcat, maven, etc.
last step:

When you restart eclipse again, an error will be reported. At this time, you only need to delete the jdk-related configuration you just configured.

-vm
D:\soft\jdk1.8\bin\javaw.exe  (你自己jdk的安装路径)

Guess you like

Origin blog.csdn.net/qq_38220334/article/details/106288025