Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow Spanner and Datastore Transaction Manager in same project #1412

Merged
merged 7 commits into from
May 20, 2023

Commits on Dec 24, 2022

  1. Changes conditional for Spanner and Datastore Transaction Manager

    Conditional for Spanner is based on missing beans of type SpannerTransactionManager instead of PlatformTransactionManager, this way it always gets created if Spanner libs are pulled in
    Conditional for Datastore is based on missing beans of type DatastoreTransactionManager instead of PlatformTransactionManager, this way it gets created if Datastore libs are pulled in
    It is user responsibility to designate the transaction's right transaction manager:
    ```
    @transactional(transactionManager = "spannerTransactionManager")
    ```
    
    ```
    @transactional(transactionManager = "datastoreTransactionManager")
    ```
    bijukunjummen committed Dec 24, 2022
    Configuration menu
    Copy the full SHA
    4b56b5f View commit details
    Browse the repository at this point in the history

Commits on May 1, 2023

  1. merge main

    JoeWang1127 committed May 1, 2023
    Configuration menu
    Copy the full SHA
    102c748 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2023

  1. Configuration menu
    Copy the full SHA
    1dd15bf View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. Configuration menu
    Copy the full SHA
    0b13809 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2023

  1. Fixes license header

    bijukunjummen committed May 10, 2023
    Configuration menu
    Copy the full SHA
    3fdb5ea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    da4a86a View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

  1. Configuration menu
    Copy the full SHA
    68ba8b5 View commit details
    Browse the repository at this point in the history