Here's the
java bean:
Within a
jsp file the bean is referenced:
This works:
This doesn't:
I get this message back:
Cannot find any information on property 'property2' in a bean of type 'NewBean'
What the heck is going on here? The recognition of properties seems completely arbitrary.
I've tried all of these things:
1. Changing case on both sides (jsp/bean)
2. Stopping and restarting
tomcat 3. Recompiling the bean
4. Providing the property as an instance variable
5. Not providing the property as an instance variable
6. Providing both get and set methods
7. Providing only a get method
All of these seem to have absolutely no effect. Tomcat just randomly decides that it's going to find a property or not.
Any help would be greatly appreciated.
Thanks,
Michael Crutcher