jstl标签forEach用法小结,后台接收表单(字符串和数组)
对于在页面上显示大量数据库查询出来的内容时,有必要使用jstl的循环语句forEach。先从后台查询:List> systemNameList = sendPowerService.getAllSystemNameService();再从后台赋值:request.setAttribute("systemNameList", systemNameList);最后在前台循环显示。如下两