Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History

spring-data-mybatis

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Spring Data MyBatis Sample Application with Cloud Spanner PostgreSQL

This sample application shows how to develop portable applications using Spring Data MyBatis in combination with Cloud Spanner PostgreSQL. This application can be configured to run on either a Cloud Spanner PostgreSQL database or an open-source PostgreSQL database. The only change that is needed to switch between the two is changing the active Spring profile that is used by the application.

The application uses the Cloud Spanner JDBC driver to connect to Cloud Spanner PostgreSQL, and it uses the PostgreSQL JDBC driver to connect to open-source PostgreSQL. Spring Data MyBatis works with both drivers and offers a single consistent API to the application developer, regardless of the actual database or JDBC driver being used.

This sample shows:

  1. How to use Spring Data MyBatis with Cloud Spanner PostgreSQL.
  2. How to develop a portable application that runs on both Google Cloud Spanner PostgreSQL and open-source PostgreSQL with the same code base.
  3. How to use bit-reversed sequences to automatically generate primary key values for entities.
  4. How to use the Spanner Emulator for development in combination with Spring Data.

NOTE: This application does not require PGAdapter. Instead, it connects to Cloud Spanner PostgreSQL using the Cloud Spanner JDBC driver.

Cloud Spanner PostgreSQL

Cloud Spanner PostgreSQL provides language support by expressing Spanner database functionality through a subset of open-source PostgreSQL language constructs, with extensions added to support Spanner functionality like interleaved tables and hinting.

The PostgreSQL interface makes the capabilities of Spanner —fully managed, unlimited scale, strong consistency, high performance, and up to 99.999% global availability— accessible using the PostgreSQL dialect. Unlike other services that manage actual PostgreSQL database instances, Spanner uses PostgreSQL-compatible syntax to expose its existing scale-out capabilities. This provides familiarity for developers and portability for applications, but not 100% PostgreSQL compatibility. The SQL syntax that Spanner supports is semantically equivalent PostgreSQL, meaning schemas and queries written against the PostgreSQL interface can be easily ported to another PostgreSQL environment.

This sample showcases this portability with an application that works on both Cloud Spanner PostgreSQL and open-source PostgreSQL with the same code base.

MyBatis Spring

MyBatis Spring integrates MyBatis with the popular Java Spring framework. This allows MyBatis to participate in Spring transactions and to automatically inject MyBatis mappers into other beans.

Sample Application

This sample shows how to create a portable application using Spring Data MyBatis and the Cloud Spanner PostgreSQL dialect. The application works on both Cloud Spanner PostgreSQL and open-source PostgreSQL. You can switch between the two by changing the active Spring profile:

  • Profile cs runs the application on Cloud Spanner PostgreSQL.
  • Profile pg runs the application on open-source PostgreSQL.

The default profile is cs. You can change the default profile by modifying the application.properties file.

Running the Application

  1. Choose the database system that you want to use by choosing a profile. The default profile is cs, which runs the application on Cloud Spanner PostgreSQL.
  2. The sample by default starts an instance of the Spanner Emulator together with the application and runs the application against the emulator.
  3. Modify the default profile in the application.properties file to run the sample on an open-source PostgreSQL database.
  4. Modify either application-cs.properties or application-pg.properties to point to an existing database. If you use Cloud Spanner, the database that the configuration file references must be a database that uses the PostgreSQL dialect.
  5. Run the application with mvn spring-boot:run.

Main Application Components

The main application components are:

  • DatabaseSeeder.java: This class is responsible for creating the database schema and inserting some initial test data. The schema is created from the create_schema.sql file. The DatabaseSeeder class loads this file into memory and executes it on the active database using standard JDBC APIs. The class also removes Cloud Spanner-specific extensions to the PostgreSQL dialect when the application runs on open-source PostgreSQL.
  • JdbcConfiguration.java: This utility class is used to determine whether the application is running on Cloud Spanner PostgreSQL or open-source PostgreSQL. This can be used if you have specific features that should only be executed on one of the two systems.
  • EmulatorInitializer.java: This ApplicationListener automatically starts the Spanner emulator as a Docker container if the sample has been configured to run on the emulator.
  • AbstractEntity.java: This is the shared base class for all entities in this sample application. It defines a number of standard attributes, such as the identifier (primary key). The primary key is automatically generated using a (bit-reversed) sequence. Bit-reversed sequential values are considered a good choice for primary keys on Cloud Spanner.
  • Application.java: The starter class of the application. It contains a command-line runner that executes a selection of queries and updates on the database.
  • SingerService and AlbumService are standard Spring service beans that contain business logic that can be executed as transactions. This includes both read/write and read-only transactions.