• 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

java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi to all,

I have written simple spring mvc example. I am getting error
"java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet" in console,when web.xml is loaded in tomcat.
i am using eclipse3.6,spring 3.0,tomcat6.0
if anybody is having an idea to resolve this problem, help me to solve this problem.


Thanks in advance


With Regards,
srini
 
Ranch Hand
Posts: 672
4
Eclipse IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This means the required jar file in not there in WEB-INF/lib of your application.. where you have put your jar files?
 
srinivas Doni
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi prasad,

Thanks for responding. problem resolved. previously i added jar files in classpath. i moved those files into web-inf/lib.





With Regards,
srini



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

srinivas Doni wrote:Hi prasad,

Thanks for responding. problem resolved. previously i added jar files in classpath. i moved those files into web-inf/lib.





With Regards,
srini






Use Maven and configure the dependencies in the pom.xml file, Maven does all the hard work for you. You don't have to copy and mange all those jar files, Maven does all the work for you when you configure the build part in the pom file.




 
A berm makes a great wind break. And we all like to break wind once in a while. Like this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic