What is the difference between jboss.jms and jboss.mq?

What is the difference between org.jboss.jms.server.destination.QueueService and org.jboss.mq.server.jmx.Queue classes?

+4
source share
3 answers

org.jboss.jms.server.destination.QueueService is part of JBossMessaging, which is the new JMS implementation for JMS that ships with JBoss AppServer version 5 and later (or JBoss EAP 4.3 or later).

org.jboss.mq.server.jmx.Queue is part of JBossMQ, which is part of the old (and now obsolete) JBoss JMS implementation found in JBoss AppServer versions prior to 4.2

+6
source

As far as I know, JBossMQ will be replaced by JBoss Messaging in JBoss AS 5.0.

For more details see:

Notice 1 and related topic Related Topic

+1
source

JBoss posts will be replaced with JBoss HornetQ :

HornetQ moves on to JBoss Messages as our main JMS implementation.

+1
source

All Articles