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 7513913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T00:20:00+00:00 2026-05-30T00:20:00+00:00

Now my colleagues work on logging subsystem and they want to bind separate operations,

  • 0

Now my colleagues work on logging subsystem and they want to bind separate operations, that was initiated from some business method. For example, if method from bean A calls to some method in bean B and then in bean C it will be great to know than business methods in bean B and bean C does some staff for method from bean A. Especially it will be great to know that methods from B and C done some unit of work for concrete call of bean A.

So, the question is how to tie this units of work into something total? Obviously, it is not beautiful to use method arguments for binding!

And also I think that it is time to ask another question, that is close enough to previous one. What if I want to propagate some context information from bean A to another beans, that are called from A? Something like security credentials and security principal? What can I do?
May be questions that I asked is some kind of bad practice?

  • 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-05-30T00:20:02+00:00Added an answer on May 30, 2026 at 12:20 am

    Looks like a good use case for mdc, available in both Logback and Log4J. Essentially you are attaching some custom value to a thread and all logging messages comming from that thread can attach that value to the message.

    I think the best way to implement this in EJB will be an interceptor:

    public class MdcInterceptor {
    
        @AroundInvoke
        public Object addMdcValue(InvocationContext context) throws Exception {
            MDC.put("cid", RandomStringUtils.randomAlphanumeric(16));
            try {
                return context.proceed();
            } finaly {
                MDC.remove("cid");
            }
        }
    }
    

    Now all you have to do is add:

    %X{user}
    

    to your logging pattern (logback.xml or log4j.xml).

    See also

    • Logging user activity in web app
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I downloaded some CVS code using the checkout command from sourceforge. Now, I want
Now that I know C++ I want to get into desktop application that have
now i need to insert some data from the sqlserver into a word,i know
Now that everyone is talking about MVC, I notice that the business rules are
Good day dear colleagues, I decided to move some projects from MySQL to MongoDB
I use Resharper at work. Some of my colleagues do not. When I open
I've been reading about LINQ to Objects, and now my colleagues want me to
I use Git, but some of my colleagues are unable to move away from
Now that most of the major browsers support full page zoom (at present, the
Now that LINQ to SQL is a little more mature, I'd like to know

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.