ActionForm中的定义如下:(有new)private ConfigFileSecondKind item ;

public ConfigFileSecondKindForm()
{
if(null == this.item)
this.item = new ConfigFileSecondKind();

}
JSP页面中代码如下:<html:form method="post" action="configfilesecondkind">
  ...
<html:select property="item.configFileFirstKind.firstKindId">
   <html:optionsCollection name="FIRSTCONFIGS" label="firstKindName" value="firstKindId" />
</html:select>
  ...
 <html:text property="item.secondKindName" styleClass="INPUT_STYLE1"/>
还请高手指点下,不胜感激.  在线=