error coming in simple java code
hi all
i am reunning a simple java class and when i compile this it through error and that error is comming because of"import org.apache.commons.beanutils.BeanUtils"
the error is
C:\Apache tomcat\apache-tomcat-5.5.12\webapps\rr_lession_1\WEB-INF\classes\net\r
eumann>javac *.java
InsertEmployeeAction.java:7: package org.apache.commons.beanutils does not exist
import org.apache.commons.beanutils.BeanUtils;
^
InsertEmployeeAction.java:21: cannot resolve symbol
symbol : variable BeanUtils
location: class net.reumann.InsertEmployeeAction
BeanUtils.copyProperties( employeeDTO, employeeForm );
^
2 errors
what is the solution of this problem and how can i remove this error

