如果用struct的话可以这样写:
<html:select property="news_Info">
<logic:present name="Add" scope="request">
<logic:iterate id="classID" name="Add" indexId="index">
<bean:define id="classId" name="classID" property="classID"></bean:define>
<%
String Id = (String)classId;
%>
<html:option value="<%=Id%>"><%=Id%></html:option>
</logic:iterate>
</logic:present>
</html:select>