Hi All,
We would like to opt for any of the below app servers,
JBoss,Tomcat,Apache.Can any one guide me which one is good.Am very New to J2EE..Thanks in advance.
Rgds
Ramchi
-
Best J2EE App Server Among JBoss, Tomcat, Apache (2 messages)
- Posted by: Ramchi M
- Posted on: October 29 2003 22:27 EST
Threaded Messages (2)
- Best J2EE App Server Among JBoss, Tomcat, Apache by Ravi Mutyala on October 30 2003 03:56 EST
-
Best J2EE App Server Among JBoss, Tomcat, Apache[ Go to top ]
- Posted by: Ravi Mutyala
- Posted on: October 30 2003 03:56 EST
- in response to Ramchi M
We would like to opt for any of the below app servers,
> JBoss,Tomcat,Apache.Can any one guide me which one is good.Am very New to J2EE..Thanks in advance.
If you are looking for a server with EJB container, then JBoss is the only one that you gave in ur options. (Apache's Geronimo is yet ready and tomcat is only a JSP container). -
Typically[ Go to top ]
- Posted by: Tom Cole
- Posted on: November 06 2003 07:53 EST
- in response to Ravi Mutyala
An enterprise application environment requires all three. Apache is the http server, which would provide the standard static html type content. Tomcat is the Servlet container which would provide JSP & Servlet content. JBoss is the EJB container, providing backend EJB support for scalable database access, etc. through enterprise javabeans.
Now JBoss does have an integrated HTTP server now, but I can't imagine it's anywhere near the performance of Apache. Tomcat is also capable of serving HTTP, but again nowhere near Apache's performance capabilities.
Small business, low traffic, html, jsp & servlets only --> Tomcat
Medium business, medium traffic, html, jsp & servlets only --> Apache & Tomcat
Large business, high traffic, html, jsp, servlet, ejbs --> Apache, Tomcat & JBoss.
Hope that helped.