lookupDispatchAction に送信される dynaAction フォームのセットアップがあります。問題は、ページが正常に読み込まれるが、送信時にアプリケーションが[BeanUtils.populate] をスローし、根本的な原因 java.lang.IllegalArgumentException: Bean が指定されていないため、現時点ではスタック ダンプをキャッチできないように見えることです。これが引き起こされているコード。変更されたコードを元に戻すことによってのみ、以下に印刷された jsp のコードの一部として原因を特定できました。現時点では、デバッガーからさらに情報を取得できるかどうかを確認しようとしていますが、これまでの調査では考えられる原因が示唆されており、どれも役に立ちませんでした。以下はコードの関連部分です (この記事を合理的に保つためにスタック トレースはスキップされています: struts-config.xml:
<form-bean name="MonthlyInvoiceForm" type="com.myapp.form.accounting.MonthlyInvoiceForm">
<form-property name="idMonthInvoice" type="java.lang.Long"/>
<form-property name="creationDate" type="java.util.Date"/>
<form-property name="adresse" type="com.myapp.model.component.CustomerAddress"/>
<form-property name="extras" type="com.myapp.accounting.customer.ExtraInvoiceForm[]"/>
<form-property name="creationLoc" initial="Home" type="java.lang.String"/>
<form-property name="totalHT" type="java.math.BigDecimal"/>
<form-property name="totalTTC" type="java.math.BigDecimal"/>
<form-property name="prefix" type="java.lang.Integer"/>
<form-property name="number" type="java.lang.String"/>
<form-property name="person" type="java.lang.String"/>
<form-property name="strTotalHT" type="java.lang.String"/>
<form-property name="strTotalTTC" type="java.lang.String"/>
<form-property name="customerName" type="java.lang.String"/>
<form-property name="strIdCustomer" type="java.lang.String"/>
<form-property name="strCreationDate" type="java.lang.String"/>
</form-bean>
また、フォーム自体には次の設定があります。
public class MonthlyInvoiceForm extends BaseDynaForm implements ModelForm<MonthlyInvoice>{
@Override
public void reset(ActionMapping mapping, HttpServletRequest request) {
ExtraInvoiceForm[] extraForms = new ExtraInvoiceForm[1];
this.set("extras", extraForms);
CustomerAddress caddress = new CustomerAddress();
this.set("adresse", caddress);
BigDecimal tmpTRD = new BigDecimal(BigInteger.ZERO);
this.set("totalHT", tmpTRD);
BigDecimal tmpTRM = new BigDecimal(BigInteger.ZERO);
this.set("totalTTC", tmpTRM);
}
@Override
public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
ExtraInvoiceForm[] extraInvoiceForms = (ExtraInvoiceForm[]) this.get("extras");
LinkedList<String> credits = new LinkedList<String>();
LinkedList<String> reductions = new LinkedList<String>();
for(ExtraInvoiceForm eif: extraInvoiceForms) {
eif.validate(errors);
if(!eif.isBlank()) {
if(eif.getOperation().equals(ExtraCostInvoice.CREDITOPERATION)) {
if(credits.contains(eif.getDescription()))
errors.add(ActionErrors.GLOBAL_ERROR, new ActionError("invoice.duplicate.credit", eif.getDescription()));
else
credits.add(eif.getDescription());
} else {
if(reductions.contains(eif.getDescription()))
errors.add(ActionErrors.GLOBAL_ERROR, new ActionError("invoice.duplicate.reduction", eif.getDescription()));
else
reductions.add(eif.getDescription());
}
}
}
if (StringUtils.isEmpty(this.get("strCreationDate").toString()))
errors.add("strCreationDate",new ActionError("field.required"));
if (StringUtils.isEmpty(this.get("creationLoc").toString()))
errors.add("creationLoc",new ActionError("field.required"));
return errors;
}
@Override
public void populateModel(MonthlyInvoice model) throws Exception {
DateTimeFormatter fmt = DateTimeFormat.forPattern("dd MMMM yyyy");
DateTime crDate;
crDate = new DateTime(fmt.withLocale(Locale.FRENCH).parseDateTime(this.get("strCreationDate").toString()));
this.set("creationDate",BaseForm.jodaToSqlDate(crDate));
PropertyUtils.copyProperties(model, this);
}
jsp:
<html:form action="/toInvoiceCustomerMissions">
/*This is the part of code in the jsp which causes the error*/
<c:forEach var="extras" items="${MonthlyInvoiceForm.map.extras}" varStatus="vs">
<tr>
<td align="center">
<html:text indexed="true" name="extras" property="description" size="40" maxlength="100" /></td>
<td align="center">
<html-el:radio indexed="true" name="extras" property="operation"
value="<%= ExtraCostInvoice.CREDITOPERATION %>"
onclick="setPercentSymbol(${vs.index}, false); calcCustomerAmount();" />Déduction
<html-el:radio indexed="true" name="extras" property="operation"
value="<%= ExtraCostInvoice.REDUCTIONOPERATION %>"
onclick="setPercentSymbol(${vs.index}, true); calcCustomerAmount();" />Réduction
<html-el:radio indexed="true" name="extras" property="operation"
value="<%= ExtraCostInvoice.SUPPLEMENTOPERATION %>"
onclick="setPercentSymbol(${vs.index}, false); calcCustomerAmount();" />Supplément
</td>
<td align="center">
<html:text indexed="true" name="extras"
property="strAmount" size="7" maxlength="6" onchange="calcCustomerAmount();" />
<input type="text" id="extraSymbol<c:out value='${vs.index}'/>" value="€"
readonly="readonly" size="1" style="border: none">
</td>
</tr>
</c:forEach>
</html:form>
前もって感謝します