In struts 1 you could use the bean:define tag to use objects in a jsp
file... for instance I used this to show a stack trace in an error jsp.

<bean:define name="error" id="e" type="java.lang.Exception"/>
<%
        out.println("<!--");
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw);
        e.printStackTrace(pw);
        out.print(sw);

        sw.close();
        pw.close();
        out.println("-->");
%>

where I had set 

catch (Exception e) {
        request.setParameter("error", e);
}

How would I accomplish this in struts 2?

Thanks!

-Jason


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to