.jsp
<%
   ......
pageContext.setAttribute("list", DAO.getListByID(ID));
%>
   ......
<logic:iterate id="vpl" name="list" indexId="index">
    <bean:write name="vpl" property="name"/>  //name是一个字段
    <bean:write name="vpl" property="obj"/> 
    <!--问题是这里 obj如果是一个List里的对象,我怎样取obj的属性?-->
</logic:iterate>
   ......