Does anyone know which class handles the @Transactional annotation? I am searching for the source code that creates the transaction, specifically.
Does anyone know which class handles the @Transactional annotation? I am searching for the
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
TransactionInterceptorhandles the interception logic, but obviously with the assistance of a lot of other infrastructure classes. That’s the best place to start, though. The transaction sync stuff is pretty fearsome when you start getting into the source code.The processing of
@Transactional, and its parsing into the neutral transaction descriptor object model, is done byAnnotationTransactionAttributeSource.