我用ArrayList把数据库写入其中,我该如何在struts2中使用标签输出呢?Collection<get_line> ret=new ArrayList<get_line>();
……
ret.add(db); 
……
request.setAttribute("line_hot",ret);我该如何在struts2中使用标签循环输出呢?在struts1中我知道标签循环输出,但struts2如何用呢