This question has been reposted for easier reading.
following code I have taken from an example
we are using bean instead of putting logic in the
jsp page.
But, we should first create the 'player ' bean with all the attributes and getter & setter methods, as shown.
How is the values of parameters a, b and c is passed to the setName(
String a), setPlace(String b) and setGame(String c) from the form without {param.text} ? If the values are passed from the form using {param.text} , then why not use that directly in the jsp page rathet than calling it through bean ? What is the use of bean in such a situation ?
Whats the need of getter methods, when all the variables are public and can be called directly ?
In this demo2.jsp, we collect the data and then display the data entered by the user. Question is, how is data sent to the bean from the form ?
Note that instead of {param.text1}, we are using {bean1.name}. We should carefully name the html form controls with the corresponding attribute names given in the bean. We cannot name the controls as 'text1' etc, now! Question is, we can use {bean1.name} in the jsp page and collect data from bean1 in the jsp page. But how does bean1 get parameters from the form ?
why use ${bean1.name} ? We can directly get parameters from form as ${param.text} ? Whats the point in using bean in this situation ?
thanks