| Author |
page attributes set using jsp:useBean
|
subathra sangameswaran
Greenhorn
Joined: Nov 19, 2005
Posts: 27
|
|
Hi all, Following is my test jsp. When I use useBean without a scope, i set an attribute at page scope right. Can I access the same using EL as in line 5? Can I access the same using scripting as shown in last line? I have the tld appropriately done for func and my simple tag(bodycontent tagdependent). But call to function is printed as template text and the simple tag bodycontent did not print at all. My output of the jsp is only this 56789 ${xyz.telephone} ${func.MyFunc()} within doTag:hi! Where do I err? Thanks and have a nice day Subha <jsp:useBean id="xyz" class="com.MyModel" > <jsp:setProperty name="xyz" property="telephone" value="56789" /> </jsp:useBean> <jsp:getProperty name="xyz" property="telephone"/> ${xyz.telephone} <%@ taglib prefix="func" uri="http://subha/home" %> <%@ taglib prefix="myst" uri="http://subha/home" %> ${func.MyFunc()} <myst:MyST srt="hi!"> <% pageContext.getAttribute("xyz").getTelephone(); %> </myst:MyST> <% ((com.MyModel)pageContext.getAttribute("xyz")).getTelephone(); %>
|
suba
|
 |
Narendra Dhande
Ranch Hand
Joined: Dec 04, 2004
Posts: 950
|
|
Hi, I think the EL is not enabled on your container. Also use <%= instead of <% to print the values. For the Simple tag, unless you use getJspBody.invoke(null) to print the body, it will not print the body. Thanks [ March 29, 2006: Message edited by: Narendra Dhande ]
|
Narendra Dhande
SCJP 1.4,SCWCD 1.4, SCBCD 5.0, SCDJWS 5.0, SCEA 5.0
|
 |
subathra sangameswaran
Greenhorn
Joined: Nov 19, 2005
Posts: 27
|
|
|
Thank you very much!
|
 |
 |
|
|
subject: page attributes set using jsp:useBean
|
|
|