tags:

views:

74

answers:

2

Where does it come from? I expected it to be either a part of my JDK or Eclipse, that expectation proved to be wrong.

A: 

Download Glassfish or JBOSS or another Java EE app server. They all have it.

duffymo
+1  A: 

Sun/Oracle is providing a java-ee.jar - which contains only the Java EE APIs and does not contain any method bodies - that you can use to compile against it (from the java.net maven repository):

If you want to execute some Java EE code, you'll need a Java EE application server, they provide an implementation of the Java EE APIs. For example, for Java EE 6, there is GlassFish.

Pascal Thivent