Environment: Java EE 6
How to determine in Interceptor if the invoked bean is container managed (CMT) or bean managed (BMT)?
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.
Beans are by definition always container managed.
Likely you want to know is current transaction CMT or BMT. Because @AroundInvoke interceptor method is executed in same transaction as intercepted business method, you can check transaction type with following:
Of course using exceptions to control flow is bad, but I am not aware of alternative method to differentiate between BMT and CMT.