Hi, I got this error when trying to display some values in jsp:
...
Caused by: javax.el.PropertyNotFoundException: Could not find property sTime in 
class com.xxx
        at javax.el.BeanELResolver.toBeanProperty(BeanELResolver.java:430)
        at javax.el.BeanELResolver.getValue(BeanELResolver.java:290)
        at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:231)
        at org.apache.el.parser.AstValue.getValue(AstValue.java:123)
        at org.apache.el.parser.AstFunction.getValue(AstFunction.java:101)
        ... 73 more

The class that is said its property sTime was not found actually has a getter 
method;
    public String getSTime() {
        return sTime;
    }
and when I changed the method name to
    public String getsTime() {
        return sTime;
    }
it's working fine.

I believe the method name "getSTime" is the name it should be and assume this 
is a bug.
Could anyone please suggest where I should post this?

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to