导致上述原因是因为el解析只带一个属性的list时候,多写了属性值,直接把别名放到值中即可。
<td width="10%" align="right"> 年度:</td>
<td width="20%">
<select name="searchEntity" style="width: 150px" id="fyearSel" class="span2">
<option value="">请选择</option>
<c:forEach items="${yearTypeList}" var="yearTypeList">
<option value="${yearTypeList}">${yearTypeList}</option>
</c:forEach>
</select>
</td>