I have a bean class B, whose super class is A.
dealNumber is defined as private String in A, and it has the following
getter/setter
public String getDealNumber() {
return dealNumber;
}
public void setDealNumber(String dealNumber) {
this.dealNumber = dealNumber;
}
Can this prop
Thanks. Just to confirm - you mean use a public getter method does not
help? This is due to reflection? or Java Beans property?
XU CHENG
EXT: 8476
DID: (65) 68898476
Hi Daniel - I am sure I am using the latest classes.
Also I have tested what you suggested. If I only put in
getDealNumber <%=b.getDealNumber%>
I can see the property value displayed properly. But if I use bean:write,
then the same error happens.
To JavaSoft - I changed all attributes to protec
Yes, I have getter in the parent:
public String getDealNumber() {
return dealNumber;
}
XU CHENG
EXT: 8476
DID: (65) 68898476
Jav
4 matches
Mail list logo