我有一个名为"应用程序实例"。
的工件类型<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>
有没有办法做到这一点,还是我需要创建两个表,每个表只有一个选项?
答案 0 :(得分:1)
您将需要两个表,否则您将需要创建一个处理程序http://docs.wso2.org/wiki/display/Governance453/Handlers。请注意,使用处理程序后,您必须在解析XML有效内容后以编程方式创建关联。
最诚挚的问候, Senaka。