Strtus2多行交付

Strtus2多行提交
<c:forEach var="item" items="${specDefList}" varStatus="s">
               <tr>
                  <td>
                  <input type="checkbox"  id="specDef${(status.index+1)}" name="selectList" value="${item.spec_uid}" /></td>
                  <td>${item.spec_value}</td>
               </tr>
           </c:forEach>


其中
复选框中 name="selectList"
selectList在action中定义
    List<Long>  selectList = new ArrayList<Long>();