I am trying to explore Java 9 features with Eclipse Oxygen Version. I have downloaded the java 9 and Eclipse Oxygen version.
But when I try to create a new java project Java SE 1.9 is not available in the list of JRE Execution environment.
How to proceed further? Any help would be appreciated.
How to proceed further? Any help would be appreciated.
Try to make use of the option Use default JRE. Though this seems to be not configured on your machine currently.("Unknown")
You can try out the Java9 example and take a look at Greg's answer on how to support it with the current Eclipse version.
Note: For the patch to work with you would have to install java-9-support-beta-oxygen as well.
After you have installed the Java 9 support for Eclipse Oxygen through the Marketplace you also have to edit your eclipse.ini. Eclipse has to be started through the Java 9 JDK, so add/change existing to:
-vm
C:\Program Files\Java\jdk-9\bin\javaw.exe
You will also need an additional vmargs argument:
--add-modules=ALL-SYSTEM
After this you should be able to select a Java 9 JDK and it will be detected as such.
See eclipse wiki for detailed informations: https://wiki.eclipse.org/Configure_Eclipse_for_Java_9
来源:https://stackoverflow.com/questions/46453241/choosing-jre-runtime-environment-in-java-9-in-eclipse-oxygen-version