我的依赖关系应该正确的时候,我不断收到javax.ws.rs错误。我该如何解决?
我正在使用IntelliJ IDE,当我将其导入我的项目时,它确实可以识别javax.ws.rs。*。那里没有任何错误。
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>5.2.6.Final</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.johnzon</groupId>
<artifactId>johnzon-jaxrs</artifactId>
<version>0.9.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
<version>1.9.13</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.johnzon</groupId>
<artifactId>johnzon-jaxrs</artifactId>
<version>1.1.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.44</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.192</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.binout</groupId>
<artifactId>jaxrs-unit-api</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.binout</groupId>
<artifactId>jaxrs-unit-resteasy</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
</dependencies>
答案 0 :(得分:1)
是的,您的依赖关系似乎是正确的。
尝试更新Idea的Maven索引as described here。转到“偏好设置”,然后在搜索框Repositories
中键入,然后在“ Maven”部分下找到它,在表中选择远程仓库,然后按“更新”按钮。
您可能会遇到另一个问题,即它花费无限时间来更新索引(无论如何,“处理索引”阶段都需要几分钟的时间)-只需使用this answers即可解决此问题。要give more memory,可以使用“帮助”->“编辑自定义VM选项”并将xmx设置为2g之类
答案 1 :(得分:0)
问题是我的项目在我的OneDrive位置。这给我带来了很多麻烦,但是当我将其移至本地驱动器后,它就解决了所有问题。