2

After deploying a web application i am getting the below error :

java.lang.ClassNotFoundException: org.apache.commons.beanutils.Converter

I am using Apache Tomcat 5.5 and Struts 1.3.8 I have copied the required jars but still facing this problem.i am missing any jars? please help

thanks in advance

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
omkar sohani
  • 147
  • 3
  • 6
  • 17

1 Answers1

1

You may be missing BeanUtils Core And Modules
You will find details here

Put commons-beanutils.jar in the WEB-INF/lib

Note: check your project Build path.

Chandra Sekhar
  • 16,256
  • 10
  • 67
  • 90
  • adding commons-beanutils.jar to WEB-INF/lib helped me to reduce the problem thanks a lot..but now error is :java.lang.ClassNotFoundException: org.apache.commons.digester.RuleSet – omkar sohani Jan 05 '12 at 09:16
  • Check in `Tomcat_Install\webapps\ROOT\WEB-INF\lib`, if you have `commons-digester.jar` from apache. Java Doc [here](http://commons.apache.org/digester/commons-digester-1.8/docs/api/) and check your **application** have any one of the jar given [here](http://javacio.us/search?q=org%2Fapache%2Fcommons%2Fdigester%2FRuleSet+more%3Ajar_files&inline=true) – Chandra Sekhar Jan 05 '12 at 11:31
  • to remove exception i kept downloading and adding jars to WEB-INF/lib and finally i have reached to following exception : javax.servlet.UnavailableException: org.apache.commons.validator.ValidatorResources.([Ljava/net/URL;)V..I didnot find this jar to download :( ... Are these problems i am facing because i am using Struts 1.3.8?? – omkar sohani Jan 06 '12 at 06:49
  • you may find solution [here](https://forums.oracle.com/forums/thread.jspa?threadID=2301058) – Chandra Sekhar Jan 06 '12 at 08:11