• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

PrimeFaces resource exception under Tomcat7

 
Ranch Hand
Posts: 572
2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Hi ,
I'm trying to migrate an application from NetBeans /Glassfish to Eclipse/ Tomcat7 and I can't get Tomcat to recognize PrimeFaces .
I'm using Tomcat7.
I'm using PrimeFaces3.3 . I have also tried 3.0
I'm using JSF 2.1.6

Any help would be appreciated.

Thanks,
Paul

This is the error


This is the web.xml



This is my faces-config.xml

 
Saloon Keeper
Posts: 27763
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Glassfish is a full-stack JEE server. Tomcat is not.

What that means in practical terms is that Glassfish has the JSF core implementation jars built into Glassfish itself, but Tomcat doesn't.

So you have to build a Tomcat-friendly WAR that includes the missing jsf-impl.jar file in its WEB-INF/lib set.
 
reply
    Bookmark Topic Watch Topic
  • New Topic