0

java クラス ファイルの arraylist を jsp ファイルに反復処理して、出力を表形式で表示しようとしています。

JSP ファイル:

<jsp:useBean id="mybean3" class="org.mypackage.process" scope="session" >  
  <jsp:setProperty name="mybean3" property="type" value="CARRIER DATA FILES" />
</jsp:useBean>

<table><tr><th>Header1</th> <th>Header2</th></tr>
<c:forEach items="${mybean3.values}" var="element3">
<tr>   <td><c:out value="${element3.DISTTT}" /></td>
    <td><c:out value="${element3.MESS}" /></td></tr>
  </c:forEach>

Java クラス ファイル:

public void setType(String typecol) {
  mpp= new HashMap();
  abc = new ArrayList();
  this.typecol = typecol;
  for (int j=0;j<=5;j++){
    mpp.put("DISTTT",j);
    mpp.put("MESS",j);
    abc.add(mpp);   
  }
}

public ArrayList getValues(){
  Object ob;
  this.Values = abc;
  return Values;
}

期待される O/P:

Header1 Header2
1          1 
2          2 
3          3
4          4
5          5

現在の O/P:

Header1 Header2
5         5
5         5
5         5
5         5
5         5
4

1 に答える 1