As I know JDK
is used to develop Java-SE
application. Now, I need to develop a Java-EE
application so does JDK include libraries for Java-EE
?
Asked
Active
Viewed 1,777 times
0

Hoang Nguyen huu
- 87
- 3
- 10
-
1You need to read http://stackoverflow.com/questions/2860513/java-ee-and-jdk and http://stackoverflow.com/questions/2024143/jdk-java-se-jdk-java-ee and this one also http://stackoverflow.com/questions/10438127/is-there-a-java-ee-jdk – Robi Kumar Tomar Jun 13 '14 at 10:53
3 Answers
2
No, it does not. Java EE is a specification - and its implementation can be downloaded in form of an application server (e.g. GlassFish).
You may want to start by downloading Netbeans EE edition + GlassFish bundle and consult the Java EE 7 turorial.

Alexander Rühl
- 6,769
- 9
- 53
- 96
-
Hi, with Java EE(J2EE) 1.4 I can download Java EE 1.4 SDK(not GlassFish), install and use Java EE. But I cannot find a Java EE SDK for Java EE 7. Please, help me to understand. – Hoang Nguyen huu Jun 19 '14 at 07:37
-
Back then the Sun Java System Application Server was the reference implementation for J2EE. With Java EE 5 the project GlassFish was started and is until now the reference implementation for Java EE. But in both cases, you download an application server, which implements all of the mandatory specifications for a specific Java Enterprise version. – Alexander Rühl Jun 23 '14 at 14:48
1
No. These are part of the application server you will work with - whichever that will be.

Ray
- 3,084
- 2
- 19
- 27
0
NO
Java EE is an API, means that it does not have implementation, but only provides interfaces. Java EE consist of many parts, like EJB, Servlets, JTA, JPA, CDI etc. If you want to use some of these features, you have to choose corresponding implementation (usually this is web or application server, frameworks etc).

nazlo
- 431
- 3
- 9