Can anyone explain this exception and its cause:
javax.servlet.jsp.JspException: No getter method for property: “loanInfoSearch_dto.branchCode” of bean: “org.apache.struts.validator.DynaValidatorActionForm”
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just a guess, but if you’ve got a class named
LoanInfoSearch_dtoand you’ve got an instance of it namedloanInfoSearch_dto, and it has a private variable namedbranchCode, then you’re missing a method namedwhere
TisbranchCode‘s type. From its name, I’d assume its anintor some other numeric type.