Using Spring Batch to write to a Cassandra Database

后端 未结 2 1218
[愿得一人]
[愿得一人] 2021-01-06 16:08

As of now, I\'m able to connect to Cassandra via the following code:

import com.datastax.driver.core.Cluster;
import com.datastax.driver.core.Session;

publi         


        
2条回答
  •  梦谈多话
    2021-01-06 16:12

    Spring Data Cassandra provides repository abstractions for Cassandra that you should be able to use in conjunction with the RepositoryItemWriter to write to Cassandra from Spring Batch.

提交回复
热议问题