February

This is the archive for February, 2009.

Dive into the archives.


  • Configuring JSW + embedded Jetty with JMX

    I thought I’d share this knowledge that I’ve learned while migrating our project to be distributed in a Jetty bundle JMX (see java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/)
    I’ve summarized this into the following steps:
    1. You must have a jetty-jmx.xml file with the following configuration:
    <?xml version="1.0"?>
    <!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
    <Configure id="Server" class="org.mortbay.jetty.Server">
        <!– =========================================================== –>
        <!– Initialize an […]