Make org.springframework.jdbc.datasource.DataSourceTransactionManager extendable [SPR-17230] #21763
Comments
Juergen Hoeller commented
|
Ken Rune Helland commented Juergen Hoeller: Thank you very much. |
Juergen Hoeller commented Alright, good to hear that it works for you that way! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ken Rune Helland opened SPR-17230 and commented
Make org.springframework.jdbc.datasource.DataSourceTransactionManager extendable
I need to change how this class does begin, commit and rollback transaction due to a legacy sybase database (do "Begin transaction" rather than "Set chained mode on").
Ideally I should be able to extend the class and override doBegin(), doCommit() and doRollback(), but because the inner class DataSourceTransactionObject is private this is not possible.
Suggjested solution:
Make inner class DataSourceTransactionObject proteced so it is accessible for subclasses.
No further details from SPR-17230
The text was updated successfully, but these errors were encountered: