问题 I am going to create batch for GCP spanner am planning to use JdbcCursorItemReader that needs datasource, So i need to create datasource for my GCP Spanner instance, Can you please suggest me on this? 回答1: You need to add the Cloud Spanner JDBC driver to your build path like this: <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-spanner-jdbc</artifactId> <version>1.9.0</version> </dependency> Then you can define a Spring data source in the normal way. Doing it