If the jsp file do not set the Property of the bean, what is the output ?
<jsp:getProperty name="test" property="name" />
<jsp:getProperty name="test" property="age" />
In the javabean, I define name as String and age as int.
I find that the output is "" and 0, but the output of podar mock exam is null and null.
Why??
Thanks a lot !!!