Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8376869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T15:31:46+00:00 2026-06-09T15:31:46+00:00

Environment: Java EE 6 How to determine in Interceptor if the invoked bean is

  • 0

Environment: Java EE 6

How to determine in Interceptor if the invoked bean is container managed (CMT) or bean managed (BMT)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T15:31:47+00:00Added an answer on June 9, 2026 at 3:31 pm

    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:

    public class SomeInterceptor {
        @Resource
        private javax.ejb.SessionContext sessionContext;
    
        @AroundInvoke
        public Object intercept(InvocationContext ctx) throws Exception {
            if (isCMT()) {
    
            }
            ...
        }
    
        private boolean isCMT() {
            try {
               //throws IllegalStateException if not BMT
               sessionContext.getUserTransaction();
               return false;
            }
            catch (IllegalStateException ise) {
               return true;
            }
        }
    }
    

    Of course using exceptions to control flow is bad, but I am not aware of alternative method to differentiate between BMT and CMT.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Environment: Java (Java EE), Tomcat container At work the vast majority of our apps
Using Linux environment with java,I'm having the config file which should be configured before
We've got a multi-agent Java environment where different agent would most likely produce all
I want to call shell script on windows environment using java code. I am
Many Java applications that use shell scripts to configure their environment use the JAVA_HOME
I have a good experience with BlackBerry Java Development Environment. I need to know
I have a Java application which is using a certain Java Runtime Environment. The
They recommend using JTA transaction support in Java EE environment. But how to configure
I've recently migrated a Java 1.4 application to a Java 6 environment. Unfortunately, I
Can someone advice which is the recommended version of Java Runtime Environment for Windows

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.