vote up 6 vote down star
4

At my shop, we use WebSphere, but I hate it with a passion.

  • Updates are a nightmare
  • It's not J2EE compliant
  • Automated deploys are very difficult

What is the best J2EE Application Server out there and why?

Edit: We see largish scale activity 50k+ daily logins, 50ish Web Applications, Several MDBs and an EJB.

flag
Just a quick comment; WAS 6.x is j2ee 1.4 compliant and WAS 7 is fully jee5 compliant – Karl Mar 11 at 21:29
They claim it, but I have personally seen WAY to many incompatibilities to classify it as compliant. – Konrad Apr 2 at 21:53

7 Answers

vote up 10 vote down check

We Use Glassfish.

  • updates are a breeze
  • it's fully J2EE compliant
  • automated deploys are easy (through the asadmin command line interface)
  • it has a very nice administration UI which lets you tweak a running server in every way you need to
  • it's robust, stable, well supported and documented
  • it receives regular security and performance updates
  • it's free
  • it doesn't leak memory on redeploying our projects, like Tomcat has a tendency to do
link|flag
vote up 1 vote down

Weblogic is exepensive, but one feature that makes it enterprise ready is that it can be configured via wlconfig scripts. Many app servers can only be configured via an admin console which is error-prone. Scripts can be checked into a configuration management system which makes configuration a repeatable process.

link|flag
vote up 1 vote down

Your comments about WebSphere are interesting. What version were you running and on what platform? I admit that earlier version left a little to be desired (especially 3.x and 4) but later version are much better. As always it depends on exactly what you are doing, but if you want a high availability server that can scale both horizontally and vertically then WebSphere is a good place to start. In terms of updates and deployments I have worked in places were we have been able to do CI deployments into a WAS environment.

But my answer would be WAS as the best application server. I have used JBOSS, Glassfish and Jetty as well. I found the earlier versions of BEA to very good but haven't used it in a while...

link|flag
vote up 0 vote down

I use Apache Tomcat. It's easy to use and it's free. I've never had any problems with it.

http://tomcat.apache.org/

link|flag
vote up 0 vote down

We're a Jboss shop, but I think the plan is for us to move into Tomcat 6 (we're quite a way behind the Jboss curve as it stands). Jboss has some annoyances though!

link|flag
vote up 1 vote down

I can't believe I'm going to post this, but I'd say that I've had my best experience with Oracle's oc4j/OAS. I was first forced to use it when my company was bought by Oracle, and had to port from Weblogic/Websphere to it.

Plusses:

  • Use oc4j on development servers. It's a very lightweight J2EE-compliant container. It is simple to install, restarts quickly, and supports auto deployment of apps (drop into a target directory).
  • In production, use OAS, which provides a full-scale platform for managing clustered servers, integrates with an Apache front-end easily, and has pretty decent management capabilities. For example, to scale your server, click a button to add a new JVM underneath it.
  • Your code in the production environment is still running under an oc4j instance, just like in development, so the risk of seeing something new is eliminated (well, drastically reduced anyway).

The major problem with it is that it's going to be retired by Oracle in favor of Weblogic eventually (probably 1 1/2 to 2 years away).

link|flag
that must be the reason why they bought Weblogic and now deprecating OAS – 01 Oct 30 '08 at 9:07
Not my experiences at all. OC4J isn't J2EE-compliant and there are major differences between the standalone OC4J and the full blown app server. – John Topley May 12 at 20:45
vote up 0 vote down

It depends what you want to use it for. I use Jetty for setting up development servers, because you can check the entire thing into source control along with a script to start it up running your web app. A new developer can download the code and have a running server with only the VCS, Java, and a browser installed.

Jetty probably isn't the best choice for a bank's account management site, though.

_**Edit:** Okay, this is off-topic since you're asking about a huge installation. Honestly, I've never met an enterprise-scale Java app server that wasn't painful on some level._

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.