vote up 1 vote down star

I'm following the directions for launching my hello world JMX bean and jboss complains with the following:

nested throwable: (java.lang.NoSuchMethodException: com.testPackage.jmx.TestJmxMBean.<init>())

I know I'm missing something REALLY obvious, but can't spot what it is.

Why would it be looking for an init method? the class extends one that has no init method, and when I change the name of the class, it fires a classNotFound, so, I know it's looking at the right class...

If anyone has a good step by step tutorial on creating your first MBean for Jboss JMX console, I'll take that too.

Much obliged.

flag

72% accept rate
Maybe it wants a default no-arg constructor? – kd304 Jul 15 at 22:45
@DrDredel: <init> is stacktrace-speak for a constructor. – skaffman Jul 15 at 22:50

2 Answers

vote up 2 vote down

try add a no-arg constructor (as requested by NoSuchMethodException)

link|flag
vote up 0 vote down

I was accidentally pointing to the Mbean service, rather than my MBean class in the jboss-service.xml. I knew it was going to be something really stupid and lo and behold... it was.

In case someone finds this useful, there is no constructor, so this exception is sort of a red herring.

Thanks for the help though.

link|flag
Strictly speaking, there is a constructor, the default no-arg constructor java adds when there is nothinng else specified. Funnily enough that's what the code that throws the exception is looking for. – Michael Rutherfurd Jul 16 at 1:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.