我对cassandra完全陌生,所以我的错误可能很明显。
我正在尝试创建一个使用Spring Boot(版本2.3.0.M2)与本地主机中安装的cassandra(版本3.11.6)联系的应用程序。
我有一个java.lang.IllegalStateException与消息:由于您提供了明确的联系点,因此必须明确设置本地DC(请参阅配置中的basic.load-balancing-policy.local-datacenter,或使用SessionBuilder.withLocalDatacenter以编程方式进行设置)。当前联系点为:Node(endPoint = localhost:9042,hostId = 16a785a4-eaf3-4a4d-a216-5244d75206aa,hashCode = 7b0b99d7)= datacenter1。该集群中的当前DC是:datacenter1
我的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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.M2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.test</groupId>
<artifactId>cassandra</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>cassandra</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-cassandra</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</pluginRepository>
</pluginRepositories>
</project>
在应用程序代码中,我有以下配置类:
public class CassandraConfig extends AbstractCassandraConfiguration {
public static final String KEYSPACE = "test_keyspace";
@Override
public SchemaAction getSchemaAction() {
return SchemaAction.CREATE_IF_NOT_EXISTS;
}
@Override
protected List<CreateKeyspaceSpecification> getKeyspaceCreations() {
CreateKeyspaceSpecification specification = CreateKeyspaceSpecification.createKeyspace(KEYSPACE);
return Arrays.asList(specification);
}
@Override
protected List<DropKeyspaceSpecification> getKeyspaceDrops() {
return Arrays.asList(DropKeyspaceSpecification.dropKeyspace(KEYSPACE));
}
@Override
protected String getKeyspaceName() {
return KEYSPACE;
}
@Override
public String[] getEntityBasePackages() {
return new String[]{"com.test.cassandra.entity"};
}
}
我的属性文件包含以下配置:
spring.data.cassandara.keyspace-name=test_keyspace
spring.data.cassandra.contact-points=localhost
spring.data.cassanda.port=9042
spring.data.cassandra.schema-act=create_if_not_exists
我也尝试过
spring.data.cassandra.contact-points=dc1
执行应用程序时,从日志中看到我正在使用以下版本用于Apache Cassandra(R)的DataStax Java驱动程序(com.datastax.oss:java-driver-core)版本4.4.0
在cassandra-rackdc.properties中,我将名称设置为
dc=dc1
我已经完成了一些测试,添加了配置参数,甚至按照datastax文档中的说明将application.conf添加到类路径中,但是没有成功。有什么线索我应该在哪里做?
由于Spring Boot 2.3.0.X],您需要显式提供本地数据中心的名称(因为添加的Cassandra驱动程序4.X支持需要显式设置本地数据中心)。您可以通过覆盖getLocalDataCenter
中的AbstractSessionConfiguration
方法来执行此操作。 AbstractCassandraConfiguration
扩展了此类,因此您只需要添加CassandraConfig
类即可:
@Override
protected String getLocalDataCenter() {
return "dc1";
}