在ssh中用struts2标签读取list数组集合

首先,在你的Action中必须要有该list的get和set方法,
然后在页面上才可以使用迭代输出。
list没有get和set的话,iterator的值是null,不会有任何输出的。
下面给你个范例:
Action中:

public class MemberAction extends ActionSupport {
 List domainList = new ArrayList();
 public List getDomainList() {
  return domainList;
 }
 public void setDomainList(List domainList) {
  this.domainList = domainList;
 }
 @Action(value="test",
   results={@Result(name="success", location="test.jsp")})
 public String test(){
  domainList.add("www.sunchis.com");
  domainList.add("www.163.com");
  domainList.add("www.sina.com");
  return SUCCESS;
 }
}

test,jsp页面:

<%@ taglib prefix="s" uri="/struts-tags" %>

<s:iterator value="domainList" status="stat">
 <s:text name="domainList[%{#stat.index}]">s:text>
s:iterator>

你可能感兴趣的:(在ssh中用struts2标签读取list数组集合)