Reputation: 21725
I got this exception in time of running a web application in java. What does this mean?
exception.name = javax.servlet.ServletException: BeanUtils.populate
Upvotes: 1
Views: 5592
Reputation: 89209
Since this is a Struts related exception (and seeing that we don't know the cause of the exception), here are some possible reasons why you're getting the exception.
ActionForm
defined in your Action
.from
doesn't match the bean properties you're matching to
.Unless we know the cause of the exception, you'll just have to debug your code and see what is the fault.
Upvotes: 0
Reputation: 14505
I guess you are using something which utilizes Jakarta BeanUtils (like Struts) and some method is throwing an exception.
Following may be reasons for same :
Check:
http://www.coderanch.com/t/53114/Struts/ServletException-BeanUtils-populate
http://forums.sun.com/thread.jspa?threadID=632599
http://javaexceptions1.blogspot.com/2009/08/javaxservletservletexception.html
Upvotes: 2
Reputation: 114817
A short call to google's famous www-indexer (with:"ServletException: BeanUtils.populate") provided this result:
ServletException BeanUtils populate
The answer to that question over there at coderanch could help to solve your problem
Upvotes: 2