struts2: accessing getters of action class in jsp without creating object - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:04:35Z http://stackoverflow.com/feeds/question/871714 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/871714/struts2-accessing-getters-of-action-class-in-jsp-without-creating-object 0 struts2: accessing getters of action class in jsp without creating object vivmal 2009-05-16T04:41:24Z 2009-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#871763 0 Answer by krosenvold for struts2: accessing getters of action class in jsp without creating object krosenvold 2009-05-16T05:25:31Z 2009-05-16T05:25:31Z <p>If your controller has a getPostalCode property you can do:</p> <pre><code>&lt;s:textfield name="postalCode"/&gt; </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>