Defining MBeans with annotations
Posted by emcmanus on August 31, 2007 at 08:11 AM | Comments (9)
The number one question I get about the JMX API at conferences
and other public events is whether there will be support for
defining MBeans using annotations. People see that they can
make EJBs or Web Services just by adding annotations to a POJO,
and they ask why they can't make MBeans the same way. In
version 2.0 of the JMX API, being defined by JSR 255, this
will be possible.
The exact details are still subject to change as a result of
discussions within the JSR 255 Expert Group, but here's a snapshot
of where we are now. I think the final version will be fairly
close to this.
In addition to defining MBeans with annotations, there are some
new proposed annotations that will also apply to MBeans defined
in the existing ways.
Prior art
Several projects already exist that provide this functionality,
but the most developed is probably Spring. So our starting point
was Spring's
MBean annotations (see also API
documentation).
Defining an MBean
In the proposed design, an MBean can be defined through
annotations to achieve the same effect as a Standard
MBean. In this and other examples, I'll show what you write
with today's API, and what you'll be able to write with the new
annotations.
| Today | Tomorrow |
|---|
public interface CacheMBean {
public int getSize();
public void setSize(int size);
public int getUsed();
public int dropOldest(int n);
}
public class Cache implements CacheMBean {
public int getSize() {...}
public void setSize(int size) {...}
public int getUsed() {...}
public int dropOldest(int n) {...}
} |
@MBean
public class Cache {
@ManagedAttribute
public int getSize() {...}
@ManagedAttribute
public void setSize(int size) {...}
@ManagedAttribute
public int getUsed() {...}
@ManagedOperation
public int dropOldest(int n) {...}
} |
This defines an MBean with read-only attribute Used,
read-write attribute Size, and operation
dropOldest.
I'll call an MBean defined this way an @MBean.
One way to look at this is that with the existing Standard MBeans,
public methods from the class are picked out as being management
methods by virtue of being in the Standard MBean interface that
the class implements. So in this example the
CacheMBean interface defines which methods in
Cache are the management methods. In the new form,
the methods are picked out by being annotated, and there is no
need to define an interface.
Pros and cons of @MBeans
The new style appears considerably more convenient than
Standard MBeans. You only have to maintain one source file,
rather than managing a class and an interface.
There is a downside, however, which may show up in bigger
projects. The advantage of the Standard MBean approach is that
the MBean interface tells you exactly what the attributes and
operations of the MBean are. There is no extraneous information
in the MBean interface: every method defines an attribute or an
operation.
On the other hand, with @MBeans the management attributes and
operations are potentially mixed in with many other methods,
public or private. So it is not immediately obvious what the
management interface of the MBean is.
This disadvantage applies both when reading the source code and
when looking at the Javadoc output.
A second disadvantage is that it is no longer possible to
construct a proxy.
Proxies simplify client code by allowing it to access attributes
and operations as compiler-checked method calls. They don't
matter if you are only going to interact with your MBeans
through a graphical interface like JConsole,
but they are a big help if you are writing an application that
will interact with your MBeans specifically.
For smallish projects, these disadvantages are likely to be
minor. Furthermore, it should be possible to define an annotation
processor that extracts a Standard MBean interface from an
@MBean, so it can be used for documentation and proxying. In
the example above, the annotation processor could create the
CacheMBean interface every time you compile your
program, based on the @ManagedAttribute and
@ManagedOperation annotations in the
Cache class.
Defining an MXBean
The existing @MXBean
annotation can be used instead of @MBean to define
an MXBean
rather than a Standard MBean.
@MXBean
public class Cache {
...remainder as above...
}
Descriptions
Although the JMX API allows for textual descriptions to be
associated with attributes, operations, and parameters, when you
use a Standard MBean today these descriptions have meaningless
default values. I've written before
about how you can add meaningful descriptions, but it isn't
easy. This is a really obvious use for annotations.
The proposed new @Description annotation can be used with
Standard MBeans, MXBeans, and @MBeans. (Notice that both
columns use the new API here!)
| Tomorrow's Standard MBean | Tomorrow's @MBean |
|---|
@Description("some sort of cache")
public interface CacheMBean {
@Description("number of cache slots in use")
public int getUsed();
...
}
public class Cache implements CacheMBean {
public int getUsed() {...}
...
} | @Description("some sort of cache")
public class Cache {
@ManagedAttribute
@Description("number of cache slots in use")
public int getUsed() {...}
...
}
|
We international types will of course be thinking about
internationalization, and I'll have more to say about that below.
Finding the MBeanServer and/or ObjectName
Often an MBean needs to know what MBean Server it is registered
in, or what its name is in that MBean Server. To do this it
currently needs to implement the MBeanRegistration
callback interface. The required values are passed to that
interface's preRegister
method. But the interface contains three other methods, which
the MBean must implement even if it has nothing interesting to
do in them.
In the new proposal, the @Resource
annotation from javax.annotation
can be used instead of implementing
MBeanRegistration when all that's needed is to
discover what the MBeanServer or ObjectName is:
| Today | Tomorrow |
|---|
public class Cache
implements CacheMBean, MBeanRegistration {
private volatile MBeanServer mbs;
private volatile ObjectName myName;
public ObjectName preRegister(
MBeanServer mbs, ObjectName name) {
this.mbs = mbs;
this.myName = name;
return name;
}
public void postRegister(Boolean done) {}
public void preDeregister() {}
public void postDeregister() {}
...
} | @MBean
public class Cache {
@Resource
private volatile MBeanServer mbs;
@Resource
private volatile ObjectName myName;
...
}
|
When the MBean is registered, the MBean Server will inject
the appropriate values into these fields.
This possibility is open to all types of MBeans, not just
@MBeans. You could continue to have a Standard MBean as today,
but stop implementing MBeanRegistration in favour
of @Resource annotations.
Simplified notification handling
Today, if an MBean emits notifications then it must implement
the NotificationBroadcaster
or NotificationEmitter
interface. This means it must keep track of the set of listeners,
as listeners are added
and removed.
It must also define the list of notification types that it can
emit, by implementing getNotificationInfo().
In practice, everybody uses the NotificationBroadcasterSupport
class instead of doing all this work themselves. In the simplest
case, you just inherit from that class, and pass the list of
notification types to the superclass constructor. If you already
have a superclass, then you need to have a private
NotificationBroadcasterSupport instance and delegate
the NotificationBroadcaster methods to it.
New annotations allow you to define the list of notification
types more simply, and to emit notifications without having to
keep track of listeners.
| Today | Tomorrow |
|---|
public class Cache
extends NotificationBroadcasterSupport
implements CacheMBean {
public Cache() {
super(new MBeanNotificationInfo[] {
new MBeanNotificationInfo(
new String[] {"my.notif.type"},
Notification.class.getName(),
"my notification"
)}
);
}
...
void somethingHappened() {
Notification n = new Notification(...);
super.sendNotification(n);
}
...
} | @MBean
@NotificationInfo(types={"my.notif.type"},
description=@Description("my notification"))
public class Cache {
@Resource
private volatile SendNotification send;
...
void somethingHappened() {
Notification n = new Notification(...);
send.sendNotification(n);
}
...
}
|
The @NotificationInfo annotation is what allows
you to avoid constructing an MBeanNotificationInfo
as in the messy "Today" code.
The new SendNotification interface contains just
the method sendNotification.
When you register this MBean in the MBean Server, it will inject
an object into the send field which allows the MBean
to send notifications. The MBean no longer has to be concerned
with managing listeners, which happens somewhere behind the
scenes.
Resource injection of SendNotification is
available to all types of MBeans. Defining the notification types
with @NotificationInfo is not available to Dynamic
MBeans, which are expected to provide a complete MBeanInfo,
including the MBeanNotificationInfo[] array.
More detail than you want to know about
@NotificationInfo appears below.
You can stop reading now
If your eyes are already glazing over with all this code, you
can safely stop here, and you'll have seen the main ideas. The
remainder of this entry is about secondary items, and further
details about the main ones.
Descriptor contents
In the JMX API included in the Java SE 6 platform, we
introduced a way to define your own annotations to specify
Descriptor contents. So you might define @Units like this:
@Documented @Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Units {
@DescriptorKey("units")
String value();
}
The new API accepts such annotations on classes or methods that
also have the @ManagedX annotations. For example:
@MBean
public class Cache {
...
@Units("bytes")
@ManagedAttribute
public int getUsed() {...}
...
}
We've also added a new @DesriptorFields
annotation, since the use of @DescriptorKey is
somewhat non-obvious, and overkill for occasional use. So you
can achieve the same effect like this:
@MBean
public class Cache {
...
@DescriptorFields("units=bytes")
@ManagedAttribute
public int getUsed() {...}
...
}
This annotation can be used in Standard MBeans and MXBeans as well
as @MBeans and @MXBeans.
Operation impact
The @ManagedOperation annotation has an optional element impact
of type Impact. This is a new enum with values
{INFO, ACTION, ACTION_INFO, UNKNOWN} corresponding
to the integer codes defined by MBeanOperationInfo.
So you can do this:
@MBean
public class Cache {
...
@ManagedOperation(impact = Impact.ACTION)
public int dropOldest(int n) {...}
}
You can also apply @ManagedOperation to a method in a
Standard MBean interface or an MXBean interface in order to
specify the impact.
MBean constructors
Each public constructor in an @MBean or @MXBean is converted into an
MBeanConstructorInfo inside the MBean's
MBeanInfo. This is exactly the same as for
existing Standard MBeans and MXBeans.
StandardMBean class
The class StandardMBean
can be used to customize an @MBean or an @MXBean in the same way
as for a Standard MBean or MXBean today. You simply supply
null for the mbeanInterface parameter in
the constructor.
Details on Resource injection
The @Resource annotation can be used to inject an
ObjectName, MBeanServer, or
SendNotification. The annotation can be applied to
a field or to a void method with a single
parameter. For example:
@Resource // field injection
private volatile ObjectName name;
private MBeanServer mbs;
@Resource // method injection
private synchronized void setMBeanServer(MBeanServer mbs) {
this.mbs = mbs;
}
The MBean Server determines what to inject based on the
type. The type is either the declared type of the field or
parameter, or it is specified explicitly in the
@Resource annotation. For example, the following
annotations have the same effect:
@Resource
private volatile ObjectName name;
@Resource(type = ObjectName.class)
private volatile Object name;
I don't think the second form will be used very often, but it might
be used to inject the MBeanServer into a field of
type MBeanServerConnection, for example.
The ObjectName (etc) will be injected as many times as there are
appropriate @Resource annotations, including in parent
classes.
@Resource annotations that don't match one of the given
types are ignored. (Perhaps they are for some other API.) But
even if the type is not recognized, @Resource
fields and methods must be instance (not static), and
@Resource methods must have exactly one parameter
and return void.
I've used volatile in all these examples because the Java Memory
Model would not otherwise guarantee that the MBean would actually
see the injected values. For method-based injection,
synchronized is an alternative, provided the MBean
also uses synchronized to access the injected
value. Notice that the same considerations apply to the
existing MBeanRegistration technique.
Resource injection happens after the MBean's preRegister
method (if any) is called, but before the MBean is registered in the
MBean Server. If an injection method throws an exception, then postRegister(false)
will be called and the exception will be thrown in the same way
as for preRegister.
More on descriptions
In addition to the description text, the @Description
annotation can specify the values of the descriptionResourceBundleBaseName
and descriptionResourceKey fields in the corresponding Descriptor.
This is enough to allow for internationalization:
@Description(value="some sort of cache",
key="cache.mbean.description",
bundleBaseName="MyResources")
To complete the story here, we need to have something that is
able to apply these Descriptor fields to localize the
MBeanInfo. We have some ideas on what that
something might look like, but they are not yet fully
formed.
More on @NotificationInfo
As I threatened, here is more information than you wanted to
know about @NotificationInfo.
If an MBean has a @NotificationInfo annotation, then that
annotation is translated into an MBeanNotificationInfo
in the MBean's MBeanInfo.
MBeanNotificationInfo includes a name
which is the name of the notification class. It is usually
"javax.management.Notification", but it might be a
subclass. So @NotificationInfo has an optional
notificationClass element which is a
Class<? extends Notification>. For
example:
@NotificationInfo(types = {AttributeChangeNotification.ATTRIBUTE_CHANGE},
notificationClass = AttributeChangeNotification.class)
If the MBean can emit more than one class of MBean, then it can
use @NotificationInfos:
@NotificationInfos(
@NotificationInfo(types = {"my.first.notif", "my.second.notif"})
@NotificationInfo(types = {AttributeChangeNotification.ATTRIBUTE_CHANGE},
notificationClass = AttributeChangeNotification.class)
)
The @NotificationInfo is applied to an MBean
class, but a @Description on that class applies to
the MBean, not its notifications. The existence of
@NotificationInfos is another reason why we cannot
use @Description straightforwardly.
This is why there is an optional element of type
@Description
inside @NotificationInfo, so you would write:
@NotificationInfo(types={"my.notif.type"},
description=@Description(value="my notification", key="my.notif.descr"))
You cannot use @DescriptorFields, for the same
reason as @Description, so there's another optional
element that allows you to write:
@NotificationInfo(types={"my.notif.type"},
descriptorFields={"foo=bar"})
Ideas still in progress
We're studying the possibility of providing a way to cause a
notification that is sent every time a given operation is
completed.
We're looking at ways in which an MBean could say what its ObjectName
is. Probably the MBean would only provide a subset of the
information needed to construct the name. It's still unclear
exactly what this might look like.
What next?
This is still work in progress, as you'll have gathered. I'm
very much interested in comments and suggestions, either here or
at jmx-spec-comments@sun.com.
Thanks!
[Tags:
jmx
jsr
jsr255
annotations]
Bookmark blog post: del.icio.us Digg DZone Furl Reddit
Comments
Comments are listed in date ascending order (oldest first) | Post Comment
-
This is welcome news
We currently use MX4J and XDoclet to achieve the same thing. This method works well but involves a separate pre-compilation phase to generate the bean descriptions and interfaces (Maintaining a separate interface by hand is painful)
My only comment is:
Could we have
@ManagedAttribute(Description="The Cache Size")
public int getSize() {...}
rather than @Description?
It is possible that I could have a POJO that is annotated by OTHER libraries E.g. Hibernate etc. Too many annotations and the class and defintions looks unwieldy and Java like.
Posted by: thatjavaguy on September 05, 2007 at 05:35 AM
-
Hi,
Thanks for this perceptive comment!
That's certainly a possibility, and indeed it corresponds to what Spring does.
Having description appear inside @ManagedAttribute etc has some implications:
The names of the related elements key and bundleBaseName must change since they are no longer qualified by the containing @Description. We'd have to change them to descriptionResourceKey and descriptionResourceBundleBaseName or something equally cumbersome.
These elements will appear in every affected annotation, which leads to a lot of redundancy in the API. At least @MBean, @MXBean, @ManagedAttribute, @ManagedOperation, and @NotificationInfo would all acquire the same three elements, description, descriptionResourceKey, and descriptionResourceBundleBaseName. That doesn't make a big difference to the developer but it does make the documentation that much less easy to grasp.
If you want to put a description in an old-style Standard MBean or MXBean, you must put it inside an otherwise redundant @ManagedAttribute etc annotation.
There is no obvious way to specify a description for a constructor, unless we create a new @ManagedConstructor annotation just so you can put descriptions in it.
None of these is really a killer reason, but you can see that having a separate @Description annotation is at least as arguable a position.
Regards,
Éamonn
Posted by: emcmanus on September 05, 2007 at 08:27 AM
-
Hi Éamonn,
We use Spring as well but haven't converted our existing code to use their annotations because we have too much code to convert - although I guess I could write a translator...
We have around 200+ mbeans (the app is highly instrumented) and it isn't a manual task to convert them.
My main concerns are maintenance and readability. As a developer of an application that has been around for 8 years I've come to appreciate cleaner code! I take your point about the lack of readability of the annotations.
I suppose one of my concerns is the use of the word @Description and the possibility that someone else will want to use @Description. Can annotations be prefixed with the classname
E.g. @javax.jmx.Description or @org.mylib.Description.?
JMX has saved our bacon on more than one (or even a 100 occasions) and it's great to see the platform evolving.
thanks
John
Posted by: thatjavaguy on September 06, 2007 at 12:05 AM
-
I did want to add one more comment to this
For me, as an enterprise developer, JMX is the killer feature of Java (over and above the actual language). Forget JAX, EJBs etc.I suspect that only JDBC comes close.
There is very little else out there that competes with it. I am not aware of anything remotely similar for .NET for instance. When I show people what we have done with it and the level of control we have they are astonished. When I tell them how easy it is they are amazed!
Posted by: thatjavaguy on September 06, 2007 at 12:13 AM
-
John,
Thanks for your kind words about the JMX API!
Yes, if you are using two different packages that both define a @Description annotation then you can disambiguate in the same way as for other Java classes. So you can write @javax.management.Description or @org.mylib.Description.
In general, we do try to avoid reusing class names that are part of other public APIs. Google
Code Search reveals three uses of @Description:
The JMX support in Caucho Resin uses @Description in exactly the same way as I described.
The Java API for freedesktop.org DBus includes an public inner-class annotation @DBus.Description.
I found an @Description in classes that have something to do with SpeckSim, which itself has something to do with simulation of mobile computing networks.
So the risk of collision at present seems small, and using a fully-qualified classname for the annotation gives you a way to work around it if it happens. We could avoid the risk by using a different name such as @JMXDescription, but I think the extra hassle of doing that always is much greater than the hassle of working around collisions in the unusual case where they happen.
Posted by: emcmanus on September 10, 2007 at 08:12 AM
-
I remember posting something similar to the JMX forums..
http://www.jmanage.org/wiki/index.php/EasyMBean
This was a few months back, and very primitive and the code was crappy too :-P
Anyways, I plan to move the code and documentation to java.net soon :-)
Posted by: sanket8 on December 15, 2007 at 02:12 PM
-
I think "Description" is too generic; it's used in a lot of code I've seen (non-JMX). To follow that logic:
MBeanInfo => Info
MBeanAttributeInfo => AttributeInfo
MBeanOperationInfo => OperationInfo
...
I vote for making it JMXDescription
Posted by: llc on February 07, 2008 at 12:13 PM
-
Eammonn,
Any way to get this functionality in JDK5 code short of using Spring?
Thanks,
Dave
Posted by: dwalend on April 08, 2008 at 07:00 PM
-
Dave,
Spring looks like your best bet at present. When this functionality appears in the openjdk repository, it will be possible to backport it to JDK 5 with probably not too much effort. The JDK team is not currently planning to do that, but somebody else might. The magic of open source!
Regards,
Éamonn
Posted by: emcmanus on April 09, 2008 at 01:56 AM
|