struts2: accessing getters of action class in jsp without creating object - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T05:04:35Zhttp://stackoverflow.com/feeds/question/871714http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/871714/struts2-accessing-getters-of-action-class-in-jsp-without-creating-object0struts2: accessing getters of action class in jsp without creating objectvivmal2009-05-16T04:41:24Z2009-05-16T05:25:31Z
<p>Hi all,<br />
I am working on struts2. In my action class I have written some accessors (setter-getter). Now, suppose this action class is returning SUCCESS and in struts.xml I am open a jsp page (say abc.jsp) against the result "SUCCESS". I need the values of all getter methods written in action class without creating object of action class in my jsp (i.e abc.jsp).</p>
http://stackoverflow.com/questions/871714/struts2-accessing-getters-of-action-class-in-jsp-without-creating-object/871763#8717630Answer by krosenvold for struts2: accessing getters of action class in jsp without creating objectkrosenvold2009-05-16T05:25:31Z2009-05-16T05:25:31Z<p>If your controller has a getPostalCode property you can do:</p>
<pre><code><s:textfield name="postalCode"/>
</code></pre>
<p>Which will bind the value to the controller field. Outside s: tags you can also use jsp-el; the expression ${postalCode} will do the same. Read <a href="http://struts.apache.org/2.0.14/docs/tag-syntax.html" rel="nofollow">this documentation</a></p>