Skip to content

MBeanView

pedrosans edited this page Apr 17, 2011 · 5 revisions

MBean View Project

JMX panel, to view and operate the applications mbeans

Documentation

This JMX panel tries to access the platform MBeanServer by invoking ManagementFactory#getPlatformMBeanServer and present its structure using a tree component, and its managed beans in property panels.

Maven Stable

<dependency>
   <groupId>org.wicketstuff</groupId>
   <artifactId>mbeanview</artifactId>
   <version>1.4.17</version>
</dependency>

Maven Development

<dependency>
   <groupId>org.wicketstuff</groupId>
   <artifactId>mbeanview</artifactId>
   <version>1.4-SNAPSHOT</version>
</dependency>

<repository>
   <id>wicketstuff-core-snapshots</id>
   <url>ttps://oss.sonatype.org/content/repositories/snapshots</url>
   <snapshots>
   	<enabled>true</enabled>
   </snapshots>		
</repository>

Java

add(new MBeansPanel("example"));

HTML

<!-- HTML example of how the component can be attached to markup -->
<div wicket:id="example"></div>

Project Maintainers

Pedro Santos, [email protected]

Source Code

core-1.4.x Branch

https://github.com/wicketstuff/core/tree/core-1.4.x/jdk-1.5-parent/mbeanview-parent/mbeanview

master Branch

https://github.com/wicketstuff/core/tree/master/jdk-1.5-parent/mbeanview-parent/mbeanview

Clone this wiki locally