I have to submit some links via the control panel of a website and they should automatically appear in the jsp page,next time the user refreshes it.To do this,I click the submit button after pasting the link,a post request is generated and servlet handles that link by calling a bean's function from itself and stores the link there in the ArrayList.
snippet from servlet
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String link = request.getParameter("song link");
StoreSongLink store = new StoreSongLink(); // A Bean class
int ret = store.storeSongLink(link); // calls the bean method
// if ret is 0,return to the cpanel home page
Bean class
public class StoreSongLink {
public static ArrayList<String> linkList = new ArrayList<String>();
public int storeSongLink(String link) {
linkList.add(link);
return 0;
}
}
After this I try to fetch the submitted links as (in the jsp page) :
<%! ArrayList<String> songList = new ArrayList<String>(); %>
<%
songList = StoreSongLink.linkList;
%>
<% for (String links : songList){ %>
<li><%= links%></li>
<%}%>
I see the link submitted one or two time and then it gets vanished after I refresh the same page and I see the message that isn't any link submitted yet! Why is this so ? I know this may not be the best of approach but still I want to do this way.
Why don't i see the link submitted after I refresh the page ? How is the data lost from the ArrayList ?