servlet向jsp传值怎么是空的?

servlet的代码publicclassListAllStudentsServletextendsHttpServlet{privatestaticfinallongs... servlet的代码
public class ListAllStudentsServlet extends HttpServlet {
private static final long serialVersionUID = 1L;

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

StudentDao studentDao=new StudentDao();
List<Student> students=studentDao.getAll();

request.setAttribute("students", students);

request.getRequestDispatcher("/students.jsp").forward(request, response);
}

JSP的代码:
<%
List<Student> stus = (List<Student>)request.getAttribute("students");
%>
<table border="1" cellpadding="10" cellspacing="0">
<tr>
<th>flowId</th>
<th>type</th>
<th>idCard</th>
<th>examCard</th>
<th>studentName</th>
<th>location</th>
<th>grade</th>
<th>DELETE</th>
</tr>
<%
for (Student student : stus) {
%>
<tr>
<td><%=student.getFlowId() %></td>
<td><%=student.getType() %></td>
<td><%=student.getIdCard() %></td>
<td><%=student.getExamCard() %></td>
<td><%=student.getStudentName() %></td>
<td><%=student.getLocation() %></td>
<td><%=student.getGrade() %></td>
<td><a href="deleteStudent?flowId=<%=student.getFlowId()%>">DELETE</td>
</tr>
<%
}
%>

</table>
补充在servlet中的students是有值的,从servlet向jsp中传固定的数也是可以的,就是传student的不行,求大神呀!小弟很急!
展开
 我来答
帐号已注销
2014-04-08
知道答主
回答量:14
采纳率:0%
帮助的人:10.6万
展开全部
你这一句是无法获取他的值的 。request.setAttribute("students", students);
这位lemon3135说对了,应该用 request.getparameter();
百度网友8fa7283
2014-04-06 · 超过21用户采纳过TA的回答
知道答主
回答量:83
采纳率:50%
帮助的人:46.2万
展开全部
request.getParameter("students");
追问
您这个答案根本不对!
追答
额 呵呵 我们不这样用jsp和servlet,jsp页面一般不嵌套java代码
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式