I'm using Tomcat-7.0.33 which has the built-in jsf-implementation Mojarra. Is that right?
I want to move to Apache MyFaces. What i did, to achieve this:
I've removed from /WEB-INF/lib/
Added in /WEB-INF/lib/:
So my completly /lib-folder:
I'm using Eclipse 4.2 (Juno). I've cleaned the Tomcat-Server.
When i request one of my pages, everything looks fine (even the source). But my Managed-Beans does not work. Seems that JSF don't register/find them.
I guess i don't need to post my faces or beans here, because with mojarra it works fine.
MyFaces is conflicting with another instance of itself. The myfaces-bundle.jar
already contains both the API and impl. You need to include either
myfaces-api.jar
myfaces-impl.jar
or
myfaces-bundle.jar
but not both.