Getting value without creating object in struts2 - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T13:57:56Zhttp://stackoverflow.com/feeds/question/919436http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/919436/getting-value-without-creating-object-in-struts20Getting value without creating object in struts2vivmal2009-05-28T06:18:28Z2009-05-28T07:25:09Z
<p>I am working on a struts2 application. I have an auto generated field in my action class and I am getting its value in a String variable. Now, after returing "SUCCESS" by this action class, struts.xml is routed to open a jsp page (say abc.jsp). I want to get that String variable (having auto generated field value) at my jsp page <strong>without creating object of action class</strong> in my jsp.
Please suggest.</p>
http://stackoverflow.com/questions/919436/getting-value-without-creating-object-in-struts2/919452#9194521Answer by krosenvold for Getting value without creating object in struts2krosenvold2009-05-28T06:22:37Z2009-05-28T06:22:37Z<p>The action class is always created in struts2. You will still have the same instance present when the abc.jsp renders, so you do not have to create a new instance of the action class. This is fairly central to how struts2 works.</p>
<p>So using regular ognl you can access all getters/setters in the controller when the jsp executes (unless you have used a ServletRedirectResult, which is slightly different)</p>
http://stackoverflow.com/questions/919436/getting-value-without-creating-object-in-struts2/919593#9195931Answer by Blake Pettersson for Getting value without creating object in struts2Blake Pettersson2009-05-28T07:25:09Z2009-05-28T07:25:09Z<p>To add to krosenvold's answer properties from your action class are fetched using the s:property tag, so if you have a getter named getSpecialString you'd fetch it like this :</p>
<pre><code><s:property value="specialString" />
</code></pre>