RE: s2 + spring, how to access spring defined bean in jsp

2008-06-06 Thread Bob Tiernay
I would recommend either of the following: 1. Use a jstl function that gets the application context and resolves the bean by name 2. Use a tagfile to wrap a scriptlet (or call to 1.) that does the lookup, using the bean name as an attribute. Date: Fri, 6 Jun 2008 13:36:16 -0400 From: [EMAIL

Re: s2 + spring, how to access spring defined bean in jsp

2008-06-06 Thread Chris Pratt
You can also add an Interceptor that places the bean in the context. Like: invocation.getStack().getContext().put(user,userBean); Then in your jsp's you can reference the value using the Struts tags as: s:property value=%{#user.firstname}/ (*Chris*) On Fri, Jun 6, 2008 at 11:00 AM, Bob

Re: s2 + spring, how to access spring defined bean in jsp

2008-06-06 Thread Dave Newton
/08, Chris Pratt [EMAIL PROTECTED] wrote: From: Chris Pratt [EMAIL PROTECTED] Subject: Re: s2 + spring, how to access spring defined bean in jsp To: Struts Users Mailing List user@struts.apache.org Date: Friday, June 6, 2008, 2:13 PM You can also add an Interceptor that places the bean

Re: s2 + spring, how to access spring defined bean in jsp

2008-06-06 Thread Tomislav Stojcevich
I found this interesting filter that I could apply: http://wiki.opensymphony.com/display/ABLE/Expose+Spring+Beans+in+JSP I'm kind of surprised that spring or struts doesn't already have something to provide this built in. --tom