我正在尝试使用apache olingo V4创建一个OData服务(https://olingo.apache.org/doc/odata4/tutorials/read/tutorial_read.html)
但是当我通过继承 org.apache.olingo.commons.api.edm.provider包
据我所知,我错过了必须包含在我的项目中的库。虽然我已经将其创建为maven项目并按照教程中的建议编辑了 pom.xml 文件。甚至,为了避免任何冲突,我使用与教程中使用的文件相同的命名约定。
请建议我如何处理这种情况。请随时询问有关该问题的任何进一步说明。这里我包含了我的pom.xml文件
<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>my.group.id</groupId>
<artifactId>DemoService</artifactId>
<packaging>war</packaging>
<version>4.0.0</version>
<name>DemoService Maven Webapp</name>
<properties>
<javax.version>2.5</javax.version>
<odata.version>4.0.0</odata.version>
<slf4j.version>1.7.7</slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${javax.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.olingo</groupId>
<artifactId>odata-server-api</artifactId>
<version>${odata.version}</version>
</dependency>
<dependency>
<groupId>org.apache.olingo</groupId>
<artifactId>odata-server-core</artifactId>
<version>${odata.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.olingo</groupId>
<artifactId>odata-commons-api</artifactId>
<version>${odata.version}</version>
</dependency>
<dependency>
<groupId>org.apache.olingo</groupId>
<artifactId>odata-commons-core</artifactId>
<version>${odata.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>${slf4j.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.11</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<finalName>DemoService</finalName>
</build>
</project>
以下是我的项目文件夹结构的快照 [项目文件夹结构]
答案 0 :(得分:0)
我的maven安装有问题。我单独安装它并将路径变量设置为C:\ ProgramFiles \ apache-maven-3.5.0 \ bin。确保您可以在命令提示符(https://maven.apache.org/install.html)中运行mvn -version
。
谢谢