1
這個Servlet,我在彩色汽車上做GROUP BY。插入請求並在jsp 中做廣告,但不轉換。如何在JSP中顯示列表?
Query query = session.createQuery("select count(carColor), carColor from Cars group by carColor order by carColor");
List<Cars> list = query.list();
Iterator iter = list.iterator();
while (iter.hasNext()) {
Object[] obj = (Object[]) iter.next();
System.out.println(obj[0] + " " + obj[1]);
}
request.setAttribute("list", list);
RequestDispatcher rd = request.getRequestDispatcher("test.jsp");
rd.forward(request, response);
控制檯: 2白色 10黑色 5藍
JSP: [[Ljava.lang.Object; @ 1f3b536,[Ljava.lang.Object; @ fdffb1,]]
JB Nizet非常感謝您! –