在应用程序属性中指定多个cassandra端口

t5zmwmid  于 2021-07-23  发布在  Java
关注(0)|答案(1)|浏览(315)

我有追随者 application.properties :

spring.data.cassandra.contact-points=localhost
spring.data.cassandra.port=1112

在我们的信息系统中,2个可访问的cassandra节点(一个重定向在我的笔记本电脑上完成)localhost:1112 and localhost:1113)
我的问题是:我怎么能进去 application.properties ,指定2个不同的主机/端口?因为我已经在使用spring.data.cassandra.contact-points了=localhost:1112,localhost:1113 with 不同的端口不起作用

dphi5xsq

dphi5xsq1#

如spring数据文档中所述,您是否尝试过:

cassandra.contactpoints=10.1.55.80:9042,10.1.55.81:9042
cassandra.keyspace=showcase
  • 你可能还需要在它前面加上前缀 spring.data

相关问题