Spring Data JDBC, part of the larger Spring Data family, makes it easier to implement JDBC based repositories in your application. Spring Data JDBC supports PostgreSQL and other database systems. It adds an abstraction layer between your application and your database that makes your application easier to port from one database system to another.
Set up Spring Data JDBC for Spanner PostgreSQL-dialect databases
You can integrate Spanner PostgreSQL-dialect databases with Spring Data JDBC using the standard PostgreSQL dialect that is included with Spring Data JDBC and the Spanner JDBC driver.
You don't need to use PGAdapter for this integration.
Dialect configuration
Spring Data JDBC selects the database dialect it uses based on the JDBC driver that has been configured as a data source in Spring Data. You must add an additional Spring configuration class to your application to instruct Spring Data JDBC to use the PostgreSQL dialect when the Spanner JDBC driver is used:
@Configuration
public class JdbcConfiguration extends AbstractJdbcConfiguration {
/** Override the dialect auto-detection, so it also returns PostgreSQL for Spanner. */
@Override
public Dialect jdbcDialect(@Nonnull NamedParameterJdbcOperations operations) {
if (isCloudSpannerPG(operations.getJdbcOperations())) {
return PostgresDialect.INSTANCE;
}
return super.jdbcDialect(operations);
}
/** Returns true if the current database is a Spanner PostgreSQL-dialect database. */
public static boolean isCloudSpannerPG(JdbcOperations operations) {
return Boolean.TRUE.equals(
operations.execute(
(ConnectionCallback<Boolean>)
connection ->
connection.isWrapperFor(CloudSpannerJdbcConnection.class)
&& com.google.cloud.spanner.Dialect.POSTGRESQL.equals(
connection.unwrap(CloudSpannerJdbcConnection.class).getDialect())));
}
}
To see an example, refer to the full working sample application on GitHub.
Dependencies
In your project, add Apache Maven dependencies for Spring Data JDBC and the Spanner JDBC driver.
<dependencies>
<!-- Spring Data JDBC -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
</dependency>
<!-- Spanner JDBC driver -->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-spanner-jdbc</artifactId>
</dependency>
<dependencies>
Data source configuration
Configure application.properties
to use the Spanner JDBC driver and
connect to a Spanner PostgreSQL-dialect database.
# This profile uses a Spanner PostgreSQL database.
spanner.project=my-project
spanner.instance=my-instance
spanner.database=spring-data-jdbc
spring.datasource.driver-class-name=com.google.cloud.spanner.jdbc.JdbcDriver
spring.datasource.url=jdbc:cloudspanner:/projects/${spanner.project}/instances/${spanner.instance}/databases/${spanner.database}
Full Sample Application
To try this integration with a sample application, see Spring Data JDBC Sample Application with Spanner PostgreSQL.
What's next
- Learn more about Spring Data JDBC.
- File a GitHub issue to report a bug or ask a question about the Spanner JDBC driver.