How to forward from Array List to Jsp in Struts
ActionServlet class?
Answers were Sorted based on User's Feedback
Answer / karnakar
in actin class take session object and add that object
(array list object)that is session.setAttribute("al",a)
and forawrd response to jsp ,read arraylist object in jsp
by using session.getAttribute("al");
Is This Answer Correct ? | 9 Yes | 4 No |
Answer / karnakar
in actin class take session object and add that object
(array list object)that is session.setAttribute("al",a)
and forawrd response to jsp ,read arraylist object in jsp
by using session.getAttribute("al");
Is This Answer Correct ? | 5 Yes | 3 No |
Answer / amit kumar
hi
i think make a bean of list with setter and getter
and use logic:iterate in jsp
in action
itemForm.setItems(itemDAO.searchRecord(itemId));
in jsp
<logic:iterate id="itembean" property="items" name="itemForm">
Item Id:
<bean:write name="itembean" property="itemId"/>
so on....
</logic:iterate>
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / ravikiran(aptech mumbai)
inaccordance with the scope of the bean set the attribute in
the particular scope
Is This Answer Correct ? | 4 Yes | 4 No |
Answer / venkateshwararao
In action class take request object and add ArrayList object
to request by using request.setAttribute("arraylist"al);
and forward to jsp using ActionForward
af=mapping.findForward("name");
In the jsp we have retrieve by using core tag library or
struts tag library.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mahesh
by putting list object in request object u can pass it in
jsp
By
Mahesh
+919970564444
Is This Answer Correct ? | 4 Yes | 5 No |
Answer / y
hi friends,
i think
by using return mapping.findForward("");
we can forward.
Is This Answer Correct ? | 6 Yes | 10 No |
Which model components are supported by Struts?
Can we have multiple struts-config files in a single web app? If yes why should we have them? Will multiple copies make any impact on performance?
How can we write our own interceptor and map it for action?
What is struts-default package and what are it’s benefits?
What is the purpose of @key annotation annotation?
what happen if the private constructor is written in a claass
What is the use of execAndWait interceptor?
What is request processor and how does it relates to action mapping?
What is front controller in struts2?
how the error can be showed in the jsp page in struts?
Which parser is used in Struts to parse the Structconfig.xml file.
What is discontinuous strut?