This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Name is <jsp:getProperty name="person" property="name" />
questions are : what happens if the sevlet code is like this
1) foo.Person p = new foo.Employee(); p.setName("Evan"); request.setAttribute("person",p);
answer : fails at request time . The person attribute is stored at request scope so <jsp:useBean > tag wont work because it can't find bean attribute .
2) foo.Employee p = new foo.Employee(); p.setName("Evan"); request.setAttribute("person",p);
answer : this works fine and prints out "Evan"
-------------------------------------------------
my doubt is in both 1) and 2) question the person attribute is having request scope only ...then how the 2) will run succesfully. ( in jsp above ther is no scope , so default is page scope )
Please do not post the same question in multiple forums. This is called cross-posting. It causes confusion and duplication of effort which will annoy the people who would otherwise help you making it less likely that you will get an answer to your question.