Home >Java >javaTutorial >Why Won't My Eclipse Oxygen Installation Start?

Why Won't My Eclipse Oxygen Installation Start?

Barbara Streisand
Barbara StreisandOriginal
2024-12-10 10:36:19207browse

Why Won't My Eclipse Oxygen Installation Start?

Why won't Eclipse Oxygen start for the first time?

Eclipse Oxygen requires Java 9 with the java.se.ee module to run. If you are using Java 9, you need to modify the eclipse.ini file in your Eclipse installation and add the following line:

--add-modules=java.se.ee

as a line following the -vmargs line in the file. This will add the Java 9 module that contains the missing classes.

You can also use the following line:

--add-modules=ALL-SYSTEM

See Eclipse Wiki: Configure Eclipse for Java 9.

Note: Eclipse Oxygen.1a (4.7.1a) is due to be released on 11 October (2017) with full Java 9 support.

The above is the detailed content of Why Won't My Eclipse Oxygen Installation Start?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn