Skip to content

Instantly share code, notes, and snippets.

@cg4jins
Created March 1, 2020 14:05
Show Gist options
  • Save cg4jins/86a68977a1aa0893712854141796c30b to your computer and use it in GitHub Desktop.
Save cg4jins/86a68977a1aa0893712854141796c30b to your computer and use it in GitHub Desktop.
RoutingDataSource.kt
class RoutingDataSource : AbstractRoutingDataSource() {
override fun determineCurrentLookupKey(): Any {
return if (TransactionSynchronizationManager.isCurrentTransactionReadOnly()) "slave" else "master"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment