我正在跟踪guide,使用MongoDB Java驱动程序3.7+版本,并将Spring Boot Starter作为依赖项。而我得到了错误:
java: cannot access com.mongodb.MongoClientSettings class file for
com.mongodb.MongoClientSettings not found
我的POM文件如下:
<?xml version="1.0" encoding="UTF-8"?>
<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>bot</groupId>
<artifactId>maven-bot</artifactId>
<version>1.0-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<org.springframework.data.version>1.11.0.RELEASE</org.springframework.data.version>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>${org.springframework.data.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>3.10.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>project.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
</project>
我的课程实体是:
import lombok.Data;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
@Data
@Document(collection = "messages")
public class Messages {
@Id
private Integer user_id;
private String message;
public Messages(String message) {
this.message = message;
}
}
用于分页的存储库界面
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.mongodb.repository.MongoRepository;
public interface Repository extends MongoRepository<Messages, String> {
Page<Messages> findByMessages(String message, Pageable pageable);
}
经过分析和测试后,我了解到此错误是由于依赖项spring boot starter
与较新版本的mongodb java driver 3.7+
之间的冲突而出现的:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
如果我删除此parent
依赖关系,那么MongoDB Java驱动程序一切都会很好。但是我需要使用接口和类的注释。
我尝试解决此错误,方法是显式编写Mongoclient
:
com.mongodb.client.MongoClient mongoClient = MongoClients.create("mongodb+srv://admin:password@cluster0-ox90k.mongodb.net/test?retryWrites=true");
代替:
MongoClient mongoClient = MongoClients.create("mongodb+srv://admin:password@cluster0-ox90k.mongodb.net/test?retryWrites=true");
但这对我避免问题没有帮助。
我还通过以下命令进行了检查:mvn dependency:resolve
它如何解决存储库中的所有项目依赖项,我得到:
Build success.
有人可以告诉我如何使用更新的MongoDB Java驱动程序正确解决此问题吗?谢谢。
答案 0 :(得分:0)
通过在POM文件中添加较新版本的spring boot starter解决了该问题:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.4.RELEASE</version>
</parent>
因此,我强烈建议使用最新版本的驱动程序和spring boot starter依赖项。并且应该可以避免此类错误。
但是您也可以使用较低版本的mongodb java驱动程序来避免这种情况。