階層のマッピング中にこのJava-Castorの問題が発生しました。御時間ありがとうございます。
私はこのXMLファイルを持っています:
<RESULT>
<RESULTCODE>OK</RESULTCODE>
<ERRORS />
<COMPANIES>
<COMPANY VD="107795641" NAME="COMPANYA"
RATING="" CIF="ABCD3435" ID="7671" NUM="0" />
<COMPANY VD="102167561" NAME="COMPANYB"
RATING="" CIF="ABCD1234" ID="6642" NUM="1" />
</COMPANIES>
</RESULT>
このJava階層:
public class RentedWSResult
{
private boolean success;
private List<RentedWSResultError> errors;
}
public class GetCompaniesRentedWSResult extends RentedWSResult
{
private List<RentedCompany> rentedCompanies;
}
そして、これらのCastorマッピング:
<mapping>
<class name="RentedWSResult">
<map-to xml="RESULT" />
<field name="success" type="string" handler="BooleanStringHandler">
<bind-xml name="RESULTCODE" />
</field>
<field name="errors" type="RentedWSResultError" collection="arraylist">
<bind-xml name="ERROR" location="ERRORS" />
</field>
</class>
</mapping>
<mapping>
<include href="RentedWSResultMarshallConfig.xml"/>
<class name="GetCompaniesRentedWSResult" >
<field name="rentedCompanies" type="RentedCompany" collection="arraylist">
<bind-xml name="COMPANY" location="COMPANIES" />
</field>
</class>
</mapping>
動作せず、次のエラーが発生します。
Unable to find FieldDescriptor for 'COMPANIES' in ClassDescriptor of RESULT