may be problem in ur Bean class only ?
Main Topics
Browse All TopicsWhile working with Spring & HIbernate f/w: i'm getting the following exception::::::
javax.el.PropertyNotFoundE
at javax.el.BeanELResolver$Be
at javax.el.BeanELResolver$Be
at javax.el.BeanELResolver.pr
at javax.el.BeanELResolver.ge
at javax.el.CompositeELResolv
any suggestions on this?????
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
public class UserRefData {
private int id;
private int user_id;
private int ref_data_id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getUser_id() {
return user_id;
}
public void setUser_id(int user_id) {
this.user_id = user_id;
}
public int getRef_data_id() {
return ref_data_id;
}
public void setRef_data_id(int ref_data_id) {
this.ref_data_id = ref_data_id;
}
}
Actually I'm getting the above exception while i'm executing the following lines in my JSP:
<c:forEach items="${subEntitlements}"
<c:choose>
<c:when test="${UserRefData.ref_da
"subEntitlements" is a list which i'm returning from my controller class, after that its not identifying my bean name "UserRefData" & its property name ref_data_id. B'cos of this i'm getting the above Exception.
Full Error Stack:
javax.el.PropertyNotFoundE
at javax.el.BeanELResolver$Be
at javax.el.BeanELResolver$Be
at javax.el.BeanELResolver.pr
at javax.el.BeanELResolver.ge
at javax.el.CompositeELResolv
at org.apache.el.parser.AstVa
at org.apache.el.parser.AstEq
at org.apache.el.ValueExpress
at org.apache.jasper.runtime.
at org.apache.jsp.jsp.AddUser
at org.apache.jsp.jsp.AddUser
at org.apache.jsp.jsp.AddUser
at org.apache.jsp.jsp.AddUser
at org.apache.jsp.jsp.AddUser
at org.apache.jasper.runtime.
at javax.servlet.http.HttpSer
at org.apache.jasper.servlet.
at org.apache.jasper.servlet.
at org.apache.jasper.servlet.
at javax.servlet.http.HttpSer
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at javax.servlet.http.HttpSer
at javax.servlet.http.HttpSer
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.S
at org.apache.catalina.core.S
at org.apache.catalina.core.S
at org.apache.catalina.valves
at org.apache.catalina.core.S
at org.apache.catalina.connec
at org.apache.coyote.http11.H
at org.apache.coyote.http11.H
at org.apache.tomcat.util.net
at java.lang.Thread.run(Unkno
Aug 27, 2009 4:54:35 PM org.apache.catalina.core.S
SEVERE: Servlet.service() for servlet ModelValidation threw exception
javax.el.PropertyNotFoundE
at javax.el.BeanELResolver$Be
at javax.el.BeanELResolver$Be
at javax.el.BeanELResolver.pr
at javax.el.BeanELResolver.ge
at javax.el.CompositeELResolv
at org.apache.el.parser.AstVa
at org.apache.el.parser.AstEq
at org.apache.el.ValueExpress
at org.apache.jasper.runtime.
at org.apache.jsp.jsp.AddUser
at org.apache.jsp.jsp.AddUser
at org.apache.jsp.jsp.AddUser
at org.apache.jsp.jsp.AddUser
at org.apache.jsp.jsp.AddUser
at org.apache.jasper.runtime.
at javax.servlet.http.HttpSer
at org.apache.jasper.servlet.
at org.apache.jasper.servlet.
at org.apache.jasper.servlet.
at javax.servlet.http.HttpSer
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at org.springframework.web.se
at javax.servlet.http.HttpSer
at javax.servlet.http.HttpSer
at org.apache.catalina.core.A
at org.apache.catalina.core.A
at org.apache.catalina.core.S
at org.apache.catalina.core.S
at org.apache.catalina.core.S
at org.apache.catalina.valves
at org.apache.catalina.core.S
at org.apache.catalina.connec
at org.apache.coyote.http11.H
at org.apache.coyote.http11.H
at org.apache.tomcat.util.net
at java.lang.Thread.run(Unkno
<c:forEach items="${subEntitlements}"
<c:choose>
<c:when test="${UserRefData.ref_da
<input type="checkbox" name="ref_data_id" id='System_${ReferenceData
</c:when>
</c:choose>
</c:forEach>
Business Accounts
Answer for Membership
by: dravidnsrPosted on 2009-08-27 at 02:32:55ID: 25196034
Can u post ur Bean class !!