我正在尝试使用 apache olingo 库版本 2.0 创建一个 odata 服务。以下是我的 web.xml 中的内容:
<servlet>
<servlet-name>StudentServlet</servlet-name>
<servlet-class>org.apache.olingo.odata2.core.servlet.ODataServlet</servlet-class>
<init-param>
<param-name>org.apache.olingo.odata2.service.factory</param-name>
<param-value>com.opengalaxy.students.MyServiceFactory</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>StudentServlet</servlet-name>
<url-pattern>/Sample/*</url-pattern>
</servlet-mapping>
使用上面的 servlet 映射,当我加载 URL“localhost:8888/Sample/$metadata”时,我收到以下错误:
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code />
<message xml:lang="en-US">Could not find an entity set or function import for 'Sample'.</message>
</error>
但是,如果我将 web.xml 中的 servlet 映射更改为 root,即“/*”为:
<servlet-mapping>
<servlet-name>StudentServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
并加载 URL “localhost:8888/$metadata”,它工作正常并加载元数据:
<edmx:Edmx xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx" 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="com.opengalaxy.Students">
<EntityType Name="Student">
<Key>
<PropertyRef Name="Id" />
</Key>
<Property Name="Id" Type="Edm.Int32" Nullable="false" />
<Property Name="Name" Type="Edm.String" Nullable="false" MaxLength="100" />
</EntityType>
<EntityContainer Name="ODataStudentsEntityContainer" m:IsDefaultEntityContainer="true">
<EntitySet Name="Students" EntityType="com.opengalaxy.Students.Student" />
</EntityContainer>
</Schema>
</edmx:DataServices>
</edmx:Edmx>
请帮我解决这个问题。
谢谢,凯沙夫