如何在olingo中读取具有复杂属性的实体的集合?

时间:2019-10-23 14:10:31

标签: java odata olingo

我大致遵循apache olingo页面上的Tutorial。我想阅读具有复杂属性的实体的集合。

设置提供程序时,访问http://localhost:8080/api/odata/$metadata时得到以下输出:

<?xml version="1.0" encoding="UTF-8"?>
<edmx:Edmx Version="4.0" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
    <edmx:DataServices>
        <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="My.Namespace">
            <EntityType Name="MyEntity">
                <Key>
                    <PropertyRef Name="id"/>
                </Key>
                <Property Name="id" Type="Edm.String"></Property>
                <Property Name="name" Type="Edm.String"></Property>
                <Property Name="description" Type="Edm.String"></Property>
                <Property Name="complexProp" Type="My.Namespace.MyComplexType"></Property>
            </EntityType>
            <ComplexType Name="MyComplexType">
                <Property Name="id" Type="Edm.String"></Property>
                <Property Name="name" Type="Edm.String"></Property>
            </ComplexType>
            <EntityContainer Name="Container">
                <EntitySet Name="MyEntities" EntityType="My.Namespace.MyEntity"></EntitySet>
            </EntityContainer>
        </Schema>
    </edmx:DataServices>
</edmx:Edmx>

对我来说哪个似乎还可以(是吗?)。但是我尝试读取访问http://localhost:8080/api/odata/MyEntities的实体集合,得到返回消息

Cannot find type with name: My.Namespace.MyComplexType

在序列化程序上调用readEntityCollection时,进入代码可以发现处理器的entityCollection方法抛出了期望。

我必须错过一个要点,因为在我看来My.Namespace.MyComplexType的定义很明确。

1 个答案:

答案 0 :(得分:0)

尽管处理器中引发了异常,但该错误与序列化无关。

找不到复杂类型MyComplexType,因为在EdmProvider中仅覆盖了getEntityType(final FullQualifiedName entityTypeName),而没有覆盖getComplexType(final FullQualifiedName complexTypeName)olingo似乎通过调用这些方法来搜索类型。

重写此方法后,所有数据均正确显示。