|
Mitul,
Every
property of a bean should have a get method and a set method (that's essentially
how a property is defined - by the existence of set and get methods).
Anytime you use a bean, these
methods are used to pass values to the bean, and to
retrieve values from the bean.
The
'property="*"' in the line you quote is requesting that JSP read all the
parameters passed to it, and
pass
every single one of them to the bean myBean. This means that every
parameter in your form MUST
correspond to a property of your bean. Since
properties are defined by the existence of set and get methods, you need to make
sure that these exist.
-AMT
|
- how to pass multiple parameters to a bean. mitul
- Arun Thomas
