I'm trying to set up a web project in Eclipse (Indigo SR1) on MacOSX with: Tomcat 7.0.22 JSF 2.0
It is a Dynamic Web Project where I've added the JSF Project Facet through Project Properties.
When adding the JSF Project Facet I get to choose from using either: Mojarra 2.0.3 or Apache MyFaces 2.0.2
If I choose Mojarra and try to start the Tomcat (from within Eclipse) I get the following exception:
java.lang.LinkageError: loader constraint violation: when resolving interface method "javax.servlet.jsp.JspApplicationContext.getExpressionFactory()
If I choose MyFaces I get the following exception:
java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.application.ApplicationFactory
Based on other answers here I have no jar:s added to the WEB-INF/lib folder and in the project's build path only the Libraries included by Eclipse itself are added:
- Apache Tomcat v7.0
- EclipseLink 2.3.0
- JSF 2.0 (Apache MyFaces JSF Core-2.0 API 2.0.2)
- MySQL JDBC Driver
The project itself is minimal and contains two xhtml-files but yet no beans.
Any ideas?