4

I need to have the information and operations of my MBeans in my applications and I need this to be as a web application.

My app server is Weblogic 10.3.2

Actually I need an application which can do the things(only about MBeans) like JConsole does(both functionally and visually).

ANy applications u know? or any code examples to do it easilly?

Thanks

Ali

Neron
  • 1,500
  • 7
  • 30
  • 52
  • In case of jboss/tomcat, the container already providing web console http://localhost:8080/web-console/ This could be leveraged to change MBeans at the run time similar to jconsole. – sundar Aug 22 '13 at 13:08
  • Sorry ,I missed the info that I am using weblogic as app server:) I have edited the question – Neron Aug 22 '13 at 13:25

1 Answers1

1

Take a look at:

  1. Jolokia: Deploys as a WAR or a JavaAgent and exposes JMX ops and attributes through a REST API. There's no actual console as yet, but check here and here for possible implementations.
  2. OpenDMK: This is the open-sourced Java Dynamic Management Kit. It contains, among other things, a HTML Protocol Adaptor which provides a very basic browser accessible view of your MBeanServer.
  3. MX4J: Also provides an HTTP Protocol Adaptor.

The last 2 are not particularly active any more, but I can attest to their stability.

Nicholas
  • 15,916
  • 4
  • 42
  • 66