如果只是自己想做一个EL的学习,可以使用
<%
Map map=new HashMap();
map.put("name1",new Integer(1));
map.put("age1","12");
map.put("password1","1234567");
pageContext.setAttribute("map", map);
%>
<%List Listname=new ArrayList();
for(int i=0;i<=10;i++){
Listname.add(i);
}
pageContext.setAttribute("list", Listname);
%>
${map["age1"]}