• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Tomcat startup problems

 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Guys,

I have troubles getting Tomcat up and running. I have a Tomcat server configured in Eclipse and it configured to my projects document base. But when I start, I see the following error:



Where ad which specific jars that I should add and where?
 
Joe San
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Tried all what I could, but still not able to get past this error. I actually imported my Maven project into eclipse and followed the normal way to configure a Tomcat server in eclipse. Why is this giving a class not found?
 
Ranch Hand
Posts: 75
Tomcat Server Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
here's the missing classes:
java.lang.ClassNotFoundException: org.springframework.web.util.Log4jConfigListener
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener
java.lang.ClassNotFoundException: org.springframework.web.context.request.RequestContextListener
java.lang.ClassNotFoundException: org.apache.struts2.tiles.StrutsTilesListener

spring framework and struts jar files are missign in tomcat/lib (or WEB-INF/lib)

http://mirrors.ibiblio.org/pub/mirrors/maven2/org/springframework/spring/
http://mirrors.ibiblio.org/pub/mirrors/maven2/org/apache/struts/struts2-tiles-plugin/

good luck!
UKi6.com - Java Hosting
 
reply
    Bookmark Topic Watch Topic
  • New Topic