Is there somebody who could give me a direction to search why I have this error?
java.lang.IllegalAccessError: tried to access class org.apache.commons.beanutils.MappedPropertyDescriptor$1 from class org.apache.commons.beanutils.MappedPropertyDescriptor
The context is : I have a signin.jsp page where I have to enter username and password to log-in:
<html:form onsubmit="return validateSigninForm(this)" action="signin" method="post">
The struts-config.xml :
<form-bean name="loginForm" type="com.cavaness.beer4all.security.LoginForm"/>
<action path="/signin" type="com.cavaness.beer4all.security.LoginAction" scope="request"
name="loginForm"
validate="true"
input="/signin.jsp">
<exception key="error.invalidlogin"
path="/signin.jsp"
scope="request"
type="com.cavaness.beer4all.common.exceptions.InvalidLoginException"/>
<forward name="Success" path="/index.jsp" redirect="true"/>
<forward name="Failure" path="/signin.jsp"/>
</action>
Thanks in advance