Best way to generate MBeans for managing an XML File
I have an XML file defined by an XML Schema. I need to manipulate it with Java code. I also need to enable remote clients to manipulate it via JMX.
Anyone got any good suggesti开发者_C百科ons?
This sounds like an XML file used for configuration.
- Use JAXB to generate Java bindings
- Use some appropriate tool to expose the Java objects generated in 1) as JMX MBeans (Spring JMX, Model MBeans, etc)
精彩评论