Получить ActiveMQSession getSessionId - PullRequest
0 голосов
/ 15 апреля 2020

Я хочу создать очередь, которая должна иметь jsessionID в качестве имени очереди, используя ActiveMQ.

Я могу создать очередь с именем stati c, но не могу перехватить Jession ID. Пожалуйста, найдите мой код ниже:

ConnectionFactory connectionFactory = new ActiveMQConnectionFactory(url);
        Connection connection = connectionFactory.createConnection();
        connection.start();

    //Creating a non transactional session to send/receive JMS message.
    Session session = connection.createSession(false,
            Session.AUTO_ACKNOWLEDGE);  


    //Destination represents here our queue 'JCG_QUEUE' on the JMS server. 
    //The queue will be created automatically on the server.
    Destination destination = session.createQueue("subject"); 

    // MessageProducer is used for sending messages to the queue.
    MessageProducer producer = session.createProducer(destination);

В приведенном выше фрагменте кода: «Тема - это имя моей очереди, я хочу заменить его идентификатором Jsession, пожалуйста, помогите

...