Coming Up for Air

GlassFish Administration: The REST of the Story Part I

Friday, August 20, 2010 |

Of the many great things about GlassFish, one that is often mentioned most (and is, in fact, what got me involved with GlassFish as an end user years ago) is the Administration Console. It’s an extremely powerful and capable interface, and is, if I may be so bold, orders of magnitudes better than its open source competition (it may even beat commercial competitors, but I have no experience with those). Another powerful tool in GlassFish administration is the asadmin CLI utility, which allows for quick and easy scripting of server provisioning, etc. Did you know, though, that GlassFish has a third administration interface? As of GlassFish v3, we offer a RESTful administration API, based on Jersey, to allow non-Java clients to configure the app server easily. For GlassFish 3.1, one of my main responsibilities, with the help, I should add of my coworkers Ludovic Champenois and Mitesh Meswani, has been to help improve upon the great start we had in in v3. In this entry, we’ll take a look at the current state of the interface and learn the basics of using.

The Basics

I don’t want to go too far into the weeds explaining what REST is, so for those of you new to the concept, you can get a high level overview at Wikipedia. Go ahead and read it. We’ll wait. Everyone back? Great! :P

The GlassFish RESTful Administration API (aka, the REST API/interface) can be found at http://localhost:4848/management/domain for configuration-related activities, and http://localhost:4848/monitoring/domain for monitoring-related activities. For this entry, we’ll not do anything with the monitoring side other than mention that it’s there. The REST API supports three different response encodings (yes, I’m aware of how dangerously overloaded that term is : ): HTML, JSON, and XML. Which type to use is determined using the Accept header, but can be overridden by using an extension on the URL (.html, .json, or .xml). Let’s take a quick look at what the return looks like.

The Request

The request payload is typically what you would see with an HTML form submission. For example, this curl example sets the port for http-listener-1, which is the listener that serves your applications:

1
curl -H "__debug: true" -H "Accept: application/json" -X POST -d "port=8675" http://localhost:4848/management/domain/configs/config/server-config/network-config/network-listeners/network-listener/http-listener-1

which will return this document (edited for brevity):

1
2
3
4
5
6
7
8
{
   "message":"\"http:\/\/localhost:4848\/...\/http-listener-1\" updated successfully.",
   "exit_code":"SUCCESS",
   "properties":{
   },
   "extraProperties":{
   }
}

There are places where the payload is a bit more complex of necessity (such as properties), but I’ll cover those in another post.

The Response

Early on, the structure of the document the REST interface could vary depending on how the endpoint resource was implemented (more on the later). In this cycle, we’ve done a lot of work to standardize on one format, which I’ll describe here, but be aware you may still see non-compliant response documents. If you do, it’s a bug and we’d appreciate it if you could open an issue. :)

The structure, then, is an object with the following fields: message, command, exit_code, properties, and extraProperties. An example is often best, so here’s the three representations of the endpoint http://localhost:4848/management/domain/:

JSON

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
    "command": "Domain",
    "exit_code": "SUCCESS",
    "properties": {},
    "extraProperties": {
        "commands": [
            {
                "path": "create-instance",
                "command": "create-instance",
                "method": "POST"
            },
// ...
        ],
        "methods": [
            {"name": "GET"},
            {
                "name": "POST",
                "messageParameters": {
                    "applicationRoot": {
                        "optional": "true",
                        "type": "string",
                        "key": "false"
                    },
// ...
                }
            }
        ],
        "entity": {
            "applicationRoot": "${com.sun.aas.instanceRoot}\/applications",
            "locale": "en",
            "logRoot": "${com.sun.aas.instanceRoot}\/logs",
            "version": "jasonlee-private"
        },
        "childResources": {
            "amx-pref": "http:\/\/localhost:4848\/management\/domain\/amx-pref",
// ...
        }
    }
}

XML

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<map>
    <entry key='extraProperties'>
        <map>
            <entry key='methods'>
                <list>
                    <map>
                        <entry key='name' value='GET'/>
                    </map>
                    <map>
                        <entry key='name' value='POST'/>
                        <entry key='messageParameters'>
                            <map>
                                <entry key='applicationRoot'>
                                    <map>
                                        <entry key='optional' value='true'/>
                                        <entry key='type' value='string'/>
                                        <entry key='key' value='false'/>
                                    </map>
                                </entry>
                            </map>
                        </entry>
<!-- ... -->
                    </map>
                </list>
            </entry>
            <entry key='entity'>
                <map>
                    <entry key='applicationRoot' value='${com.sun.aas.instanceRoot}/applications'/>
                    <entry key='locale' value='en'/>
                    <entry key='logRoot' value='${com.sun.aas.instanceRoot}/logs'/>
                    <entry key='version' value='jasonlee-private'/>
                </map>
            </entry>
            <entry key='commands'>
                <list>
                    <map>
                        <entry key='command' value='create-instance'/>
                        <entry key='path' value='create-instance'/>
                        <entry key='method' value='POST'/>
                    </map>
<!-- ... -->
                </list>
            </entry>
            <entry key='childResources'>
                <map>
                    <entry key='resources' value='http://localhost:4848/management/domain/resources'/>
<!-- ... -->
                </map>
            </entry>
        </map>
    </entry>
    <entry key='message'/>
    <entry key='exit_code' value='SUCCESS'/>
    <entry key='command' value='Domain'/>
</map>

HTML

html interfaces screenshot 300x207

The Details --- As you can see from these trimmed down version, there’s quite a bit of data there. For the most part (though we still have areas we need to clean up), the data you will be most interested in as an end user will be under 'extraProperties'. This property is an object that lists the various HTTP methods the endpoint supports, giving information on parameters it supports; the entity’s state, if there is any (more on that later); any commands nested under this endpoint (more on that later as well); and any child resources this resource may have.

It’s worth noting that the documents you see above were pretty-printed by the server, a feature that is off by default. To enable this feature, the HTTP Accept header __debug must be set to true. If this header is not present, or if the value is not 'true', the server will not format the document. In this case, the unformatted JSON document is just over half the size of the pretty-printed one, resulting in much less going over the wire, an important production consideration.

Quack! Quack! WADL! WADL!

What’s a REST service with a WADL document describing it? Since the REST interface is Jersey-based, we get that for free. It can be found at http://localhost:4848/management/application.wadl. Be careful, though, because it’s BIG. :)

You put your module in. You take your module out!

Those of that have been following GlassFish for a while may remember the big deal we made about the dynamic nature of v3. Jerome Dochez stood on the stage at JavaOne and showed an EJB-less GlassFish container start up, and then refuse to deploy an EJB app, because it didn’t support them. He then added the require jars, and with the black magic help of OSGi, the server suddenly supported EJB deployments. Really slick. One of the issues we tackled on the REST side, though, was how to handle the addition and removal of these modules. Making matters more difficult, we didn’t want to require third party module developers to worry about REST when writing their add-ons. Enter asm, stage right.

Thanks to hard work of Mitesh and Ludo, the REST endpoints you see in the server are completely dynamic. The REST module itself is lazily loaded, so you don’t have to pay that penalty as the server starts, but, once it starts, it analyzes what is in memory (i.e., the HK2 DOM hierarchy) and generates and registers REST endpoints on the fly. What this means for third party developers is that as long as they’re using HK2 and domain.xml to manage their config, they get REST endpoints for free. It also means that a web profile GlassFish installation isn’t exposing useless endpoints.

Summary

This ended up being much longer than I had intended, but here’s the take away. GlassFish offers three ways to administer the server: the web-based console, the command line-based asadmin utility, and HTTP-based REST interface. Using one or more of those means you will likely never have to look at an XML file, and that ain’t bad. :)

In future posts in what I intend to be a series, we’ll take a look at specific use cases using the REST interface.

Search

    Quotes

    Sample quote

    Quote source

    About

    My name is Jason Lee. I am a software developer living in the middle of Oklahoma. I’ve been a professional developer since 1997, using a variety of languages, including Java, Javascript, PHP, Python, Delphi, and even a bit of C#. I currently work for Red Hat on the WildFly/EAP team, where, among other things, I maintain integrations for some MicroProfile specs, OpenTelemetry, Micrometer, Jakarta Faces, and Bean Validation. (Full resume here. LinkedIn profile)

    I am the president of the Oklahoma City JUG, and an occasional speaker at the JUG and a variety of technical conferences.

    On the personal side, I’m active in my church, and enjoy bass guitar, running, fishing, and a variety of martial arts. I’m also married to a beautiful woman, and have two boys, who, thankfully, look like their mother.

    My Links

    Publications