citronic
citronic

Reputation: 10168

What is the direct link for the standalone Java EE JAR file?

Where can I obtain the standalone Java EE JAR file? I've looked everywhere on sun.com, but can't find a way to get the JAR file without also installing the app server, etc, etc.

Upvotes: 2

Views: 2081

Answers (4)

crowne
crowne

Reputation: 8534

Java EE is a collection of specifications:

  • Servlet
  • JMS
  • EJB
  • etc.

You can get the individual implementation jars for the apache geronimo server from the central maven repository under

http://repo1.maven.org/maven2/org/apache/geronimo/specs/

Upvotes: 2

Pascal Thivent
Pascal Thivent

Reputation: 570595

You could download it from a Maven repository:

Upvotes: 3

Jesper
Jesper

Reputation: 206996

What exactly are you looking for? You do need an app server that implements the Java EE 6 API, such as Glassfish v3. Just having a JAR file with the Java EE API without any implementation isn't useful.

Upvotes: 2

Carl Smotricz
Carl Smotricz

Reputation: 67820

I looked too and didn't find one. Possibly there simply ain't.

Go on, bite the bullet, download the app server. You're going to need one sooner or later anyway, right?

Otherwise, if you already have an app server... then you should already have the jar too.

Upvotes: 0

Related Questions