• 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

faces servlet exception thrown noClassDefinationFounderror com.sun.el.util.messagefactory

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i am using jsf with spring and hibernate. my index page loads successfully but when i clicks on any link on the index page i ll face following error:

faces servlet exception thrown noClassDefinationFounderror com.sun.el.util.messagefactory initilizationFailure

my all jar are inside the lib folder. with the jsf i am using custon tags.
 
Saloon Keeper
Posts: 27762
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
There isn't a lot of information to work with here. However, one thing that's important to keep in mind is that EL was not built into the Tomcat server until Tomcat 6. Webapps for Tomcat 5.5 and earlier had to supply their own EL jars in their WEB-INF/lib directories.

It is therefore possible that the app was built for an older server and you are experiencing class conflicts with the EL classes in your server's built-in libraries.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic