1

我有一个名为“应用程序实例”的工件类型。

<table name="Endpoints">
    <subheading>
        <heading>Type</heading>
        <heading>Reference</heading>
    </subheading>
    <field type="option-text" maxoccurs="unbounded" path="true" url="true">
        <name>Endpoint</name>
            <values>
                <value>Provided</value>
                <value>Consumed</value>
            </values>
    </field>
 </table>

我想根据此配置创建关系,类似于。

<relationships>
<association type="isConsumedBy" source="@{endpoints_consumed:endpoint}"/>
<association type="isProvidedBy" source="@{endpoints_provided:endpoint}"/-->
</relationships>

有没有办法做到这一点,或者我需要创建两个表,每个表只有一个选项?

4

1 回答 1

1

您将需要两个表,否则您必须创建一个处理程序http://docs.wso2.org/wiki/display/Governance453/Handlers。请注意,在解析 XML 有效负载后,您必须使用处理程序以编程方式创建关联。

最好的问候,塞纳卡。

于 2013-03-27T10:30:01.633 回答