Getting value without creating object in struts2 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T13:57:56Z http://stackoverflow.com/feeds/question/919436 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/919436/getting-value-without-creating-object-in-struts2 0 Getting value without creating object in struts2 vivmal 2009-05-28T06:18:28Z 2009-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#919452 1 Answer by krosenvold for Getting value without creating object in struts2 krosenvold 2009-05-28T06:22:37Z 2009-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#919593 1 Answer by Blake Pettersson for Getting value without creating object in struts2 Blake Pettersson 2009-05-28T07:25:09Z 2009-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>&lt;s:property value="specialString" /&gt; </code></pre>