2
我試圖在WSO2管理註冊表4.6.0(G-Reg)「服務列表」表(Home> Metadata> List> Services)中添加兩列「服務詳細信息視圖」:「概述 - 描述」和「終點 - URL」 我主編的「服務構件」(首頁>擴展>配置>工件類型>神器來源)採用下面幾行:自定義WSO2治理註冊表4.6.0 - 服務列表
<artifactType type="application/vnd.wso2-service+xml" shortName="service" singularLabel="Service" pluralLabel="Services" hasNamespace="false" iconSet="27">
<storagePath>/trunk/services/@{namespace}/@{name}</storagePath>
<nameAttribute>overview_name</nameAttribute>
<!--<endpoint1Attribute>endpointstext_endpoint1</endpoint1Attribute>-->
<namespaceAttribute>overview_namespace</namespaceAttribute>
<lifecycle>ServiceLifeCycle</lifecycle>
<ui>
<list>
<column name="Service Name B">
<data type="text" value="overview_name"/>
</column>
<!-- NEW Description -->
<column name="Description">
<data type="text" value="overview_description"/>
</column>
<!-- NEW Endpoints -->
<column name="Endpoints">
<!-- <data type="text" value="endpoints_endpoint1"/> -->
<!-- <data type="text" value="endpointmgt_endpointstext_endpoint1"/> -->
<data type="text" value="endpoints_endpointstext_endpoint1"/>
</column>
<column name="Service Version">
<data type="path" value="overview_version" href="@{storagePath}"/>
</column>
<column name="Service Namespace">
<data type="text" value="overview_namespace"/>
</column>
</list>
</ui>
<content>
......
</content>
</artifactType>
「Descrition」列正確填充,而「Endpoints」列爲空。 如何賦值標籤值?(data type =「text」value =「???????」/>)??
我的下面的答案是否解決了這個問題?請讓我知道,如果你想更多的澄清。 – tkr