I am getting an exception when deploying one of my apps in a newer version of JBoss.
NoSuchMethodError:
org.hornetq.api.core.management.QueueControl.getMessageCount()I
My hypothesis is that the newer version of HornetQ in JBoss no longer offers that method.
I would like to know how to find out what is the current hornetQ version in my JBoss so I can check the API docs for an alternative method.
Any idea/Suggestion?
Navigate to
modules\org\hornetq\mainin your JBoss AS installation directory.In there you will find a number of jar files such as:
Where version is the HornetQ version.
UPDATE: