Where does the Jar file come from? I expected it to be either a part of the JDK or Eclipse. That expectation proved to be wrong.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.