我正在用struts 1.3编写 web 应用程序。我想将员工的 ArrayList 传递给 JSP 页面。
我看到以下两种方法:
1. 将员工列表作为字段放入 ActionForm。
List<Employee> employees;
设置此字段的操作类:
empForm.setEmployees(employeeList);
并且 JSP 使用这些数据作为:
${empForm.employees}
2. 将员工名单直接放入请求中。
操作类将employeeList 设置为请求。
request.setAttribute("employees", employeeList);
在 JSP 中:
${employees}
请建议我应该采用哪种方法。在Struts 1.3中哪一个被认为是一个好的实践。