简体   繁体   中英

Java SE/EE JDK confusion

I want to install Netbeans for Java EE, which I did. During installation, it said JDK missing and gave me a link from where I downloaded 'SE' JDK. I couldn't really find 'EE' JDK. I might not be making any sense, but is that the JDK I want for my EE work? Netbeans got installed alright but I just want to make sure that everything Is ok. Even though I have quite a bit understanding about the basic differences in Java SE and EE. Only JDK I could find was for SE. If there is one for EE then kindly provide the link? or just let me know if I did everything right.

Java EE is a fundamentally different story than SE. Whereas SE contains the Java runtime and many development tools, EE is just a library. In fact, most of the library are just interfaces with no implementations.

This is because the JEE application container is the one which will provide its implementations of those interfaces. At development time you just need the interfaces to have something to refer to and NetBeans for Java EE (hopefully) already comes with those interfaces bundled.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM