Skip to content

Commit

Permalink
optimize: report the tcc fence transaction isolation level (apache#6679)
Browse files Browse the repository at this point in the history
  • Loading branch information
chengliefeng committed Aug 19, 2024
1 parent 6d40cbe commit b5c1801
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@ protected Object doInvoke(InvocationWrapper invocation) throws Throwable {
return invocation.proceed();
}

/**
* Initializes the transaction annotation context
* @param method the method
* @param targetBean the target bean
* @param businessActionContext the business action context
*/
private void initTransactionalAnnotationContext(Method method, Object targetBean, Map<String, Object> businessActionContext) {
Transactional transactionalAnnotation = MethodUtils.getTransactionalAnnotationByMethod(method, targetBean);
if (transactionalAnnotation != null) {
Expand Down

0 comments on commit b5c1801

Please sign in to comment.