我有一个奇怪的问题。我创建了一个类RegisteredUrl:
package com.deshand.model;
import java.net.URL;
import org.springframework.data.mongodb.core.mapping.Document;
@Document
public class RegisteredUrl {
private final String id;
private final URL url;
public RegisteredUrl(String id, URL url) {
this.id = id;
this.url = url;
}
public String getId() {
return id;
}
public URL getUrl() {
return url;
}
}
当我收到错误“无法解析导入org.springframework.data”时。
我的下一步:添加maven依赖项
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId>
<version>1.7.0.RELEASE</version>
</dependency>
现在“import”错误消失了,但是我又收到了38个错误,eclipse告诉我我正在尝试覆盖org.springframework.data的托管版本。
完整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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.deshand.adc</groupId>
<artifactId>test-assignment</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</dependency>
</dependencies>
有什么想法吗?
2条答案
按热度按时间toe950271#
在POM中包括以下内容
ma8fv8wu2#
如果您收到错误消息"导入www.example.com无法解析",则意味着spring-data-commons库在项目的类路径中不可用。org.springframework.data.annotation.id cannot be resolved" it means that the spring-data-commons library is not available in your project's classpath.
要解决此问题,您需要确保spring-data-commons库包含在项目的依赖项中。如果您使用的是Maven或Gradle,则可以将以下依赖项添加到pom.xml或build. gradle文件中:玛文:
等级:
将{spring-data-version}替换为项目中使用的Spring Data版本。
添加spring-data-commons依赖项后,重新构建项目并尝试再次导入org.springframework. data. annotation. id。错误应该会得到解决。