You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have problem with r2dbc and mssql project after update spring 2.7 to 3.1. Spring set transaction name to class+method but mssql limit transaction name to 32 chars. Is there any way (interceptor or something else) to catch setting transaction name and override it ?
The text was updated successfully, but these errors were encountered:
There's no support to provide a transaction name via @Transactional. However, by configuring a TransactionAnnotationParser you can affect TransactionAttribute that contains the name attribute.
As this is a Spring Framework functionality, I suggest reaching out to the Framework team.
We have problem with r2dbc and mssql project after update spring 2.7 to 3.1. Spring set transaction name to class+method but mssql limit transaction name to 32 chars. Is there any way (interceptor or something else) to catch setting transaction name and override it ?
The text was updated successfully, but these errors were encountered: