Re: Access Struts2 Action Properties

2009-02-05 Thread Dominik Fischer
Yes. a simple TagSupport extended JSP-Tag == Dominik FISCHER Fachinformatiker für Anwendungsentwicklung (IHK) Straubinger Tagblatt IDOWA FON: +49 9421 940 6842 Ludwigsplatz 30

Re: Access Struts2 Action Properties - Noob

2009-02-05 Thread Dominik Fischer
You can add things to that map and they will be set as request attributes. And the good news it, because it's a Map it plays well with junit without having to mock anything up. -Original Message- From: Dominik Fischer [mailto:fische...@idowa.de] Sent: Thursday, February 05, 2009 10:

Access Struts2 Action Properties

2009-02-05 Thread Dominik Fischer
Hello folks, how can i access a property (i.e. data) of a class like public class BabyAction extends ActionSupport implements RequestAware { private List data; public List getData() { return this.data; } public void setSearch(List data) {

Re: Access Struts2 Action Properties - Noob

2009-02-05 Thread Dominik Fischer
2.0.14/docs/set.html -Original Message- From: Dominik Fischer [mailto:fische...@idowa.de] Sent: Thursday, February 05, 2009 8:59 AM To: user@struts.apache.org Subject: Access Struts2 Action Properties - Noob Hello folks, how can i access a property (i.e. data) of a class like public clas

Access Struts2 Action Properties - Noob

2009-02-05 Thread Dominik Fischer
Hello folks, how can i access a property (i.e. data) of a class like public class BabyAction extends ActionSupport implements RequestAware { private List data; public List getData() { return this.data; } public void setSearch(List data) {