0
コントローラでマップを生成しました。JSPページの年齢のマップを取得し、テーブルの2つの列にキーと値を表示する方法
Map<String, String> currentbatchitems = new HashMap<String, String>();
for (int i = 0; i < currentbatchitem.size(); i++) {
currentbatchitems.put(currentbatchitem.get(i).getEmpCode(), currentbatchitem.get(i).getEmpName().toString());
}
data.put("currentbatchitems", currentbatchitems);
キーと値をJSPの別の列に表示するにはどうすればよいですか。次のようになります。This the table.The key of the map is employee code and value is employee name.How could I add the row on this table by getting the value from this map?
はそんなにありがとう –