3
xsdファイルにリストを宣言する必要があります。何を変更する必要があるかわからない私は単純な型を使ってみましたが、必要な型は生成されません。私のようにデータ型を持っている私のPOJOを必要XSDでオブジェクトリストを表現する
-
@XmlElement(name = "Journeys", required = true)
protected List<LoyaltyJourneyIdentifier> journeys = new ArrayList<LoyaltyJourneyIdentifier>();
私の現在のxsd
<xs:complexType name="AccountLoyaltyDetail">
<xs:sequence>
<xs:element name="OperatingCompany" type="ns:OperatingCompanyType"
minOccurs="0" />
<xs:element name="Journeys" type="ns:LoyaltyJourneyIdentifier" />
<xs:element name="Segments" type="ns:LoyaltySegmentIdentifier" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="LoyaltyJourneyIdentifier">
<xs:sequence>
<xs:element name="JourneyIdentifierId" type="xs:string" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Free form text to be echoed back in the reply.
Used to match requests and replies.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType
> 現在、POJOは次のように生成される -
@XmlElement(name = "Journeys", required = true)
protected LoyaltyJourneyIdentifier journeys;
変更する必要があることを教えてください
ありがとう...しかし、提案したように私のxsdを変更しようとしています。上記のpojoが私の必要としているものでないようになっています。また、私はリストをオブジェクト型にしたいと思っています。あなたはそれに対して何の変更があるのか教えてください。 – themaster
XSDを編集しました。試してみてください。 –
「LoyaltyJourneyIdentifierには名前空間がないことが検出されましたが、ターゲット名前空間のないコンポーネントはスキーマ 文書から参照できませんでした」というエラーが表示されます。file:/// D:/ ILoyalty_WS/Loyalty_WS/src/main/config/'LoyaltyJourneyIdentifier'に名前空間がない場合は、接頭辞を付ける必要があります。 は、 'LoyaltyJourneyIdentifier'に名前空間がないことを意図している場合は、 "namespace"属性を 'file:/// D:/ ILoyalty_WS/Loyalty_WS/src/main/config/properties/contract/xsds / – themaster