3

If you return a double or float from your MBean jconsole seems to round it down to the nearest integer.

Rowan
  • 874
  • 1
  • 6
  • 14

1 Answers1

3

The trick is to return a Double or Float instead. Jconsole is looking for the wrapper classes to determine when to show decimal places.

Rowan
  • 874
  • 1
  • 6
  • 14