サーブレットに文字列の配列リストがあり、これを使用して転送を渡します。
//in servlet
ArrayList<String> output = new ArrayList<String>();
//populate arraylist with values here
//forward the string
request.setAttribute("myData ", output);
request.getRequestDispatcher("Home.jsp").forward(request, response);
私はこれにスクリプレット表記でアクセスできることを知っています:
ArrayList<String> myData = (ArrayList<String>)request.getAttribute("myData");
jstlでこれにアクセスするにはどうすればよいですか?