mojarra « Tomcat « JSF Q&A





1. JSF 1.2 Tomcat redeployment error    stackoverflow.com

I'm using JSF 1.2 with Spring on Tomcat 6.0.18. I am able to successfully deploy my application on Tomcat, but when undeploying following error occurs:


INFO  [org.apache.catalina.startup.HostConfig] Undeploying context [/myapp]
ERROR [org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/myapp]] ...

2. Remove JSF completely from JBoss 6 or from Glassfish 3?    stackoverflow.com

I have a JSF Mojarra 2.0.3 app that was developed entirely on Tomcat 7 where it works superbly. I need to deploy this application on JBoss or on Glassfish and ...

3. Mojarra 2.1.0 - FCS doesn't work with tomcat 7    stackoverflow.com

i am using JSF 2.1 ( Mojarra 2.1.0 - FCS ) with tomcat 7 as follows:

<dependency>
 <groupId>com.sun.faces</groupId>
 <artifactId>jsf-api</artifactId>
 <version>2.1.0-b11</version>
 <scope>compile</scope>
 </dependency>

 <dependency>
 <groupId>com.sun.faces</groupId>
 <artifactId>jsf-impl</artifactId>
 <version>2.1.0-b11</version>
 <scope>compile</scope>
 </dependency>
when i tried to run ...