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

MappedPropertyDescriptor error

 
Greenhorn
Posts: 24
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
A teeny tiny vulgar attempt to get you to buy our stuff
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic