您的位置:首页 > 编程语言 > Java开发

Spring boot cassandra - nested exception is com.datastax.driver.core.exceptions.NoHostAvailableException

2017-03-19 10:37 1736 查看
1.在Pom.xml添加spring-boot-starter-data-cassandra依赖:

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-cassandra</artifactId>
</dependency>


启动spring boot应用,出现错误:

org.springframework.boot.SpringApplication: 815 - Application startup failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'session' defined in class path resource [org/springframework/boot/autoconfigure/data/cassandra/CassandraDataAutoConfiguration.class]:
Invocation of init method failed;
nested exception is com.datastax.driver.core.exceptions.NoHostAvailableException:
All host(s) tried for query failed (
tried:
localhost/127.0.0.1:9042 (com.datastax.driver.core.exceptions.TransportException: [localhost/127.0.0.1:9042] Cannot connect),
localhost/0:0:0:0:0:0:0:1:9042 (com.datastax.driver.core.exceptions.TransportException: [localhost/0:0:0:0:0:0:0:1:9042] Cannot connect))


意思是说应用启动失败。是由于在CassandraDataAutoConfiguration类中创建bean时失败了。内部原因是应用启动过程中发现cassandra不可访问,抛出了NoHostAvailableException异常。

默认情况下boot中的自动配置的Cassandra的host是127.0.0.1和0:0:0:0:0:0:0:1,两次尝试都失败了。

=>在本地的C:\Windows\System32\drivers\etc目录中的hosts文件中添加:

192.168.99.100 localhost


将127.0.0.1映射到实际配置的ip,这里使用了在Docker中启用的Cassandra容器。

=>spring boot提供了可以改配置的方式:

在src/main/resources目录下添加application.properties文件,在其中添加:

spring.data.cassandra.contact-points=192.168.99.100


来修改配置信息。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐