Hey Meka,

I am not sure if I understand what you are saying, so let me surmise: You
are trying to access an arraylist in a JSP page that has been set by your
action class. If this is what you are trying to do, it you place the array
list in the request scope or session scope as an attribute and then
reference it from the JSP by the attribute name.

in your action, use

request.setAttribute("myList", yourListInstance);

or session.setAttribute("myList", yourListInstance);

Then in your JSP, you could access it by request.myList, session.myList or
from a struts tag using the name "myList". Hope this information helps you
find your solution. (My example is not exact).

Chuck

-----Original Message-----
From: Meka Struts [mailto:[EMAIL PROTECTED]
Sent: Thursday, July 24, 2003 3:24 PM
To: Struts Users Mailing List
Subject: Re: Question About Passing Values from Action Class


Hi Mike,

Got your point. Thank You

In that case, how would the view classes be helpful. Because some people
will write View classes (plain java files with get/set - java beans )

Can i set the view class also in the session so that the View JSP can access
it and show the data ?

This situation will be arising when i have a data layer which returns me a
Bussiness Object. So i fill the data from bussiness object to view class and
then pass on to view jsp.

Please correct me if any part of above statement doesnt make sense.

Thank You

Meka Toka

PS: I have read and read 2 books, i am just clearing my doubts.


----- Original Message -----
From: "Mike Jasnowski" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Thursday, July 24, 2003 4:10 PM
Subject: RE: Question About Passing Values from Action Class


> Generally you would stuff this ArrayList in a formbean accessible via a
> public getter, or you could I suppose put it in the session yourself as a
> scoped attribute. Then in the JSP you access it by that attribute name.
>
> -----Original Message-----
> From: Meka Struts [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 24, 2003 3:58 PM
> To: [EMAIL PROTECTED]
> Subject: Question About Passing Values from Action Class
>
>
> Hi,
>
> I have an Action Class which has 2 methods
>
> * an execute method that forwards using ActionMapping
> * a protected method getXXX(), which return an ArrayList of objects to
> execute method.
>
> My question is, how would i pass the ArrayList to the view page (jsp) so
> that it can extract data from ArrayList and display it.
>
> I am actually going though an example and it seems to have missed that
part.
> I cant get to understand how will the ArrayList object be passed ?
>
> Thank You
>
> Meka Toka
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to