What is the minimum server required to deploy a JSF 2.0 project?

I can either install Tomcat or the Glassfish server on a production server to deploy my JSF 2.0 project. Which version of these servers is JSF 2.0 compatible? Please give an offer.

I developed with Mojarra 2.0.2, Facelets and PrimeFaces, Netbeans 6.8

+3
source share
2 answers

In general, you need at least a server that supports Servlet 2.5 or later for JSF 2.0 (found in coreservlets.com JSF 2.0 tutorial ) for example:

  • Tomcat 6+
  • Glassfish 2.1+
  • Jetty 6+
  • Google app engine
  • JBoss 5+
  • WebSphere 6+
  • WebLogic 9+

If you are not integrated, you need jsf-api.jarand jsf-impl.jarfor JSF 2.0

, Java EE 6 (Glassfish 3, JBoss 6, WebLogic 11g), .

+4

All Articles