The relevant section is Section 8.8 of the specification:

"Thus when we extract a property or event name from the middle of an existing Java name, we normally convert the first character to lower case. However to support the occasional use of all upper-case names, we check if the first two characters of the name are both upper case and if so leave it alone. So for example,

    'FooBah' becomes 'fooBah'
    'Z' becomes 'z'
    'URL' becomes 'URL'"

-- Jeff

Wendy Smoak wrote:
From: "t t" <[EMAIL PROTECTED]>

Salute you! Bill. It works! Thank you so much!
But why? Why does the name of a property matter? Why
does the upper case "A" matter?


Form beans need to conform to the JavaBeans specification.  That's what
makes it possible for the framework to "know" what method to call when it
goes through the parameters in the request and populates the Form bean.

http://java.sun.com/products/javabeans/reference/api/index.html

You must have had a mismatch between the name of the property and the name
of the method.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to