vote up 3 vote down star
1

I have a JSP page that contains a scriplet where i instantiate an object. I would like to pass that object into the JSP tag without using any cache.

For example i would like to accomplish this:

<%@ taglib prefix="wf" uri="JspCustomTag" %>

<% 
 Object myObject = new Object();
%>

<wf:my-tag obj=myObject />

I'm trying to avoid directly interacting with any of the caches (page, session, servletcontext), i would rather have my tag handle that.

flag
Note, i don't want my object converted to a string and passed as a string, i want my tag handler to actually have access to the object. – Joe Bienkowski Sep 17 '08 at 21:07

6 Answers

vote up 0 vote down

It is worth looking at this link...

http://www.coderanch.com/t/293634/JSP/java/Passing-ArrayList-JSP-custom-Tag

link|flag
vote up 0 vote down

A slightly different question that I looked for here: "How do you pass an object to a tag file?"

Answer: Use the "type" attribute of the attribute directive:

<%@ attribute name="field" required="true" type="com.mycompany.MyClass" %>

The type defaults to java.lang.String, so without it you'll get an error if you try to access object fields saying that it can't find the field from type String.

link|flag
vote up 3 vote down
<jsp:useBean id="myObject" class="java.lang.Object" scope="page" />
<wf:my-tag obj="${myObject}" />

Its not encouraged to use Scriptlets in JSP page. It kills the purpose of a template language.

link|flag
vote up 1 vote down

For me expression language works only if I make that variable accessible, by putting it for example in page context.

<%  Object myObject = new Object();
    pageContext.setAttribute("myObject", myObject);
%>
<wf:my-tag obj="${myObject}" />

Otherwise tas receives null.

And <wf:my-tag obj="<%= myObject %>" /> works with no additional effort. Also <%=%> gives jsp compile-time type validation, while El is validated only in runtime.

link|flag
Use JSP compile, you will get the error on compile time. – Vinegar Dec 10 '08 at 6:27
vote up 1 vote down

The original syntax was to reuse '<%= %>'

So

<wf:my-tag obj="<%= myObject %>" />

See this part of the Sun Tag Library Tutorial for an example

link|flag
vote up 0 vote down

Use expression language:

    <wf:my-tag obj="${myObject}" />
link|flag
We need to add that in some context, prior using it. – Vinegar Dec 10 '08 at 6:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.