Java Development Kit (JDK) is required rather than a JRE . creating welogic server

Multi tool use


Java Development Kit (JDK) is required rather than a JRE . creating welogic server
i am creating weblogic server in eclipse to deploy web dynamic project but i am facing problem "Java Development Kit (JDK) is required rather than a JRE"
creating weblogic server in eclipse
1 Answer
1
A JDK contains the javac compiler and other tools that a JRE doesn't contain. Maybe weblogic needs them.
You can download the JDK from http://www.oracle.com/technetwork/java/javase/downloads/index.html
Make sure you pick a version compatible with your weblogic server.
After installation, in Eclipse, open Preferences > Java > Installed JREs and add it (and maybe choose it as default).
It maybe necessary to choose it in Preferences > Java > Installed JREs > Execution Environments in the Execution Environment you use in you project, or directly in you project, or maybe in the run configuration you use.
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Then you should install the JDK and point to it instead of the JRE
– Chuk Ultima
16 mins ago