我为生成元数据的系统实体开发了Odata服务但是我无法弄清楚如何向其中添加Annotations
元素。生成的样本元数据如下: -
<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" xmlns:sap="http://www.sap.com/Protocols/SAPData" Version="1.0">
<edmx:DataServices xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"
m:DataServiceVersion="1.0">
<Schema xmlns="http://schemas.microsoft.com/ado/2008/09/edm" Namespace="myNamespace" sap:schema-version="1">
<EntityType Name="System">
<Key>
<PropertyRef Name="Id" />
</Key>
<Property Name="Id" Type="Edm.Int32" Nullable="false" />
<Property Name="name" Type="Edm.String" sap:label="System Name" sap:creatable="false"
sap:updatable="false" sap:sortable="false" sap:required-in-filter="true"/>
<Property Name="description" Type="Edm.String" />
<Property Name="status" Type="Edm.String" />
<Property Name="type" Type="Edm.String" />
</EntityType>
<EntityContainer Name="ODataEntityContainer" m:IsDefaultEntityContainer="true">
<EntitySet Name="Systems" EntityType="myNamespace.System" />
<FunctionImport Name="NumberOfSystems" ReturnType="Collection(myNamespace.System)"
m:HttpMethod="GET" />
</EntityContainer>
</Schema>
</edmx:DataServices>
</edmx:Edmx>
我需要在上面的metatada中添加以下元素
<Annotations Target="myNamespace.System"
xmlns="http://docs.oasis-open.org/odata/ns/edm">
<Annotation Term="com.sap.vocabularies.UI.v1.LineItem">
<Collection>
<Record Type="com.sap.vocabularies.UI.v1.DataField">
<PropertyValue Property="Value" Path="name" />
</Record>
<Record Type="com.sap.vocabularies.UI.v1.DataField">
<PropertyValue Property="Value" Path="description"/>
</Record>
<Record Type="com.sap.vocabularies.UI.v1.DataField">
<PropertyValue Property="Value" Path="status" />
</Record>
</Collection>
</Annotation>
</Annotations>
我遇到了org.apache.olingo.commons.api.edm.provider.annotation
包,但无法找到任何合适的API。请让我知道我该怎么办。
提前谢谢。
答案 0 :(得分:2)
OData V3引入了您想要使用的注释,这就是Olingo V2库不直接支持它们的原因。
您可以使用EdmProvider AnnotationElement和AnnotationAttribute类来模拟此行为。例如,您可以创建名为“Annotations”的AnnotationElement,此元素将具有“AnnotationAttribute”Target = SomeString。由于“AnnotationElement”可以包含子元素,因此可以将Collection元素放在那里。命名空间也使用“AnnotationAttributes”处理。 您只能将注释附加到从EdmAnnotatable接口派生的Edm元素。所以这与V3不同。
这是目前使用Olingo V2获得此行为的唯一方法。