根据key值通过el表达式获取map的值

Map<String, String> map = new HashMap<String, String>(); map.put("name", "00");

request.setAttribute("map", map);

el表达式可以这样写:${ map['name'] }


你可能感兴趣的:(根据key值通过el表达式获取map的值)