ArrayList « Tag « JSP-Servlet Q&A





1. In JSP, how to pass ArrayList using anchor tag?    stackoverflow.com

I am a total newbie in JSP. All I can do is receive data from form tags from another web page. I don't know any MCV(MVC?) nor custom tag, session, cookies or ...

2. Need ArrayList printed without "Brackets"    stackoverflow.com

Hello everyone I have an arraylist showing up as [MCA, MCB, COMM, DMISA] on the jsp. Im calling it on the jsp:

<td>${bean.sorCodesNames}</td>
In the bean the getter is:
public void setSorCodesNames(ArrayList<String> sorCodesNames)
{
   ...

4. Passing ArrayList to JSP custom Tag?    coderanch.com