No getter method for property p of bean b - getP is public in b's super class

2004-04-22 Thread xucheng
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

Re: No getter method for property p of bean b - getP is public in b's super class

2004-04-22 Thread xucheng
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

Re: No getter method for property p of bean b - getP is public in b's super class

2004-04-22 Thread xucheng
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

Re: No getter method for property p of bean b - getP is public in b's super class

2004-04-22 Thread xucheng
Yes, I have getter in the parent: public String getDealNumber() { return dealNumber; } XU CHENG EXT: 8476 DID: (65) 68898476 Jav