Forums Register Login

Using jsp:useBean without class attribute

+Pie Number of slices to send: Send
This is to reference to BE THE CONTAINERON page # 358 in HF SCWCD book.

Prob:

<jsp:useBean id="person" type="foo.Employee" scope="request" >
<jsp:setProperty name="person" property="name" value="Fred" />
</jsp:useBean>
Name is : <jsp:getProperty name="person" property="name" />

1. What happens if the servlet code looks like:

foo.Person p = new foo.Person();
p.setName("Evan");
request.setAttribute("person",p);

Where Person is abstract class and Employee extends Person and is concreate class.

Explanation given :

Fails at request time.The "person" attribute is stored at request scope,so the <jsp:useBean> tag won`t work since it specifies only a type.The CONTAINER knows that if you have only a type specified ,there must be an existing bean attribute of the name and scope.

My Doubt

According to my understanding if the attribute ("person") is already in request scope then the <jsp:useBean> will try to find the attribute by something like this in generated _jspService method by the container.

person = (foo.Employee)_jspx_page_context.getAttribute("person",PageContext.Request_Scope);

so if person if not null then there is no point of failure at request time and <jsp:getProperty> will print the name.

Can anybody please explain where iam wrong?

Regards
Sumit Kumar
+Pie Number of slices to send: Send
This is an error in the book, checkout the errata to know about this and other errors in the book...
+Pie Number of slices to send: Send
Thank you Ankit
Get me the mayor's office! I need to tell her about this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 974 times.
Similar Threads
HFSJ: Be the Container: page 358
Is this an error in HFSJ ??
HFSJ 2nd edition page 420 - Be the Container Answers
jsp:usebean
bean-related standard actions exercise
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 05:24:31.