1 Reply Latest reply on Jan 9, 2007 12:52 PM by peterj

    JBoss, Tomcat and J2EE

    thefuzzypickle

      Hi,

      Before I start, I'm going to apologize for any blatantly incorrect statements and newbie questions. :)

      I'm wanting to use J2EE for a project of mine, and have been reading a lot about JBoss and Tomcat to serve up applications. However, a coworker told me that J2EE already comes with an application server. So my question is, what are the advantages in using JBoss or Tomcat if J2EE already has a server?

      Thanks,

      Dan

        • 1. Re: JBoss, Tomcat and J2EE
          peterj

          J2EE (or now Java EE) is a specification (or perhaps more accurately, a collection of many specifications). When you download the J2EE SDK from the Sun web site, it comes with a reference application server. That is, an application server that is built to the spec and is to be used as a reference guide for others wanting to build application servers, or to build applications to deploy to such servers. The reference server is not intended to be used in production (at least, it was not before, not sure if that is still a true statement).

          Tomcat is also a reference server, but for the JSP and Servlet specs (note that this is not full J2EE). Even though it is a reference implementation, it is robust enough to use in a production environment.

          JBoss uses Tomcat to handle servlets and JSPs, and adds to that all of the other services necessary to be J2EE compliant. In addition, it contains all of the jar files necessary to build J2EE applications. In other words, you do not need to download the J2EE SDK from Sun to build J2EE apps, you can just as easily download JBoss and use it for building J2EE apps.