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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:42:56+00:00 2026-05-22T12:42:56+00:00

I am new JMS arena, I have created multiple message listeners but one listener

  • 0

I am new JMS arena, I have created multiple message listeners but one listener per thread. I have following message listener, This message listner is passed a session object while it is constructed. Then when the message is received then this message listener processes message then commits the session as shown in the code. Closing sessions/connections is done in shutdown hook.

    public class MyMessageListener implements MessageListener, ExceptionListener {
        private Session _session = null;

        public MyMessageListener(Session s) {
            _session = s;
        }

        @Override
        public void onMessage(Message arg0) {
            try {

                // Retrieve the data
                JMSBytesMessage bytesMessage = (JMSBytesMessage) arg0;
                byte[] payload = new byte[(int) bytesMessage.getBodyLength()];
                bytesMessage.readBytes(payload);
                String payloadString = new String(payload);
                ProcessMessage(payloadString);
                _session.commit();
                MessageCounter.Increment();
            } catch (Exception e) {
                e.printStackTrace();
            } 
        }


    public abstract void ProcessMessage(String theMessage);

    }

Now my worry is that if listener receives two messages at the same time, will there be a chance the session commits both messages?

  • 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-22T12:42:57+00:00Added an answer on May 22, 2026 at 12:42 pm

    Everything from Session on down is single-threaded. No worry about multi-threading. See How to temporarily disable a message listener (different problem, similar issues).

    You do create a separate session for each listener, right? That’s a requirement. Part of the “everything from Session on down is single-threaded”.

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

Sidebar

Related Questions

I am new to this JMS, MSMQ, Weblogic things and don't have much idea
New to javascript, but I'm sure this is easy. Unfortunately, most of the google
Should a JMS application create a new session for every message that it sends
I have an java EE application which has one message-driven bean and it runs
I'm new to JMS. I'm using ActiveMQ CPP (C++ version), but most probably my
I have a Spring JMS listener that receives a BytesMessage/JMSBytesMessage. I want to convert
I have a JMS listener app, and the class QueueReceive implements MessageListener.the main function
In my application, I have the following Message Driven Bean to connect to the
I am relatively new to JMS and have encountered a weird problem implementing my
New to FluentNHibernate =D I have a parent/children classes as follows: public class Parent

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.