Skip to main content
Redhat Developers  Logo
  • Products

    Platforms

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat AI
      Red Hat AI
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • View All Red Hat Products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat Developer Hub
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat OpenShift Local
    • Red Hat Developer Sandbox

      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Secure Development & Architectures

      • Security
      • Secure coding
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • Product Documentation
    • API Catalog
    • Legacy Documentation
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

JBoss EAP 7 Domain deployments – Part 4: Domain deployment with REST Management API.

August 15, 2016
Elvadas Nono
Related topics:
Developer ToolsJava
Related products:
Red Hat JBoss Enterprise Application Platform

Share:

    In this series of article, I will present several ways to deploy an application on an EAP Domain. The series consists of four parts. Each one will be a standalone article, but the series as a whole will present a range of useful topics for working with JBoss EAP.

    • Part 1: Set up a simple EAP 7.0 Domain (this article).
    • Part 2: Domain deployments through the new EAP 7.0 Management Console
    • Part 3:  Introduction to DMR (Dynamic Model Representation) and domain deployments from the Common Language Interface CLI
    • Part 4: Domain deployment from the REST Management API

    In part one of this series, we set up a simple JBoss EAP Domain. In part two, we reviewed the EAP Management Console deployment Mechanism and deployed the helloworld-html5 EAP Quickstart on the main-server-group ( Server11 and Server21). In part three, we deployed helloworld-html5 on secondary-server-group using the CLI Command line.

    In this tutorial, part four, we are going to explore another deployment option: the REST Management API. To do so, we will upload a file in the EAP content repository and then deploy it.

    Management Interfaces

    On the master domain controller, we set up two management interfaces: the native on port 9999, and the HTTP management interface on port 9990.

    While the CLI uses the native management port, and the EAP management console and the REST API are available on the HTTP management port, all these management interfaces also share common XML configuration files: host.xml/domain.xml. They also send commands to EAP using an intermediate representation called DMR ( Dynamic Model Representation).

    DMR

    DMR stands for Dynamic Model Representation, and it is a new syntax introduced with EAP 6 to denote Java objects associated with EAP Management interfaces. DMR is flatter than XML files and all the items are at the same level. Let's check out a sample:

    The domain.xml configuration section containing EAP profiles and server groups looks like this:

    <profiles>
     <profile name="default">
       ....
     </profile>
     <profile name="ha">
       ....
     </profile>
     <profile name="full">
       ...
     </profile>
     <profile name="full-ha">
       ...
     </profile>
     </profiles>
    
     <server-groups>
     <server-group name="primary-server-group" profile="full">
       ...
     </server-group>
     <server-group name="secondary-server-group" profile="full">
       ...
     </server-group>
     <server-group name="singleton-server-group" profile="default">
       ...
     </server-group>
    </server-groups>..

    And the DMR representation of this same XML looks like this:

    ...
    "profile" => {
     "default" => undefined,
     "ha" => undefined,
     "full" => undefined,
     "full-ha" => undefined
     },
     "server-group" => {
     "primary-server-group" => undefined,
     "secondary-server-group" => undefined,
     "singleton-server-group" => undefined,
     },
    ...

    The EAP Configuration is made up of a DMR tree, and using the CLI you can navigate through the entire configuration: deployments, server-groups, subsystems and modules, hosts... you can even update the DMR tree with specific operations.

    For example, to read the whole configuration:

    [domain@localhost:9990 /] :read-resource
     "outcome" => "success",
     "result" => {
     "domain-organization" => undefined,
     "management-major-version" => 4,
     "management
    ...

    To check the undertow subsystem configuration on ha profile:

    [domain@localhost:9990 /]/profile=ha/subsystem=undertow:read-resource
    {
     "outcome" => "success",
     "result" => {
     "default-security-domain" => "other",
     "default-server" => "default-server",
     "default-servlet-container" => "default",
     "default-virtual-host" => "default-host",
     "instance-id" => expression "${jboss.node.name}",
     "statistics-enabled" => false,
     "buffer-cache" => {"default" => undefined},
     "configuration" => {
     "filter" => undefined,
     "handler" => undefined
     },
     "server" => {"default-server" => undefined},
     "servlet-container" => {"default" => undefined}
     }
    }

    Generate DMR Queries with CLI gui

    The  command builder in the CLI console can be used to generate queries in DMR Syntax. Start the CLI in a graphical tool by adding the --gui option:

    enonowog-OSX:bin enonowog$ ./jboss-cli.sh --gui
    
    JBoss CLI GUI

    DMR to REST

    All the management interfaces rely on JBoss DRM to read/update the configuration; the REST API is based on this feature.

    The mangement API is available at  http://127.0.0.1:9990/management, and this endpoint accepts JSON POST requests of the format:

    data:operation:the operation to be performed:address:the path on which the operation should be performed

    This is an array with all the path items and finally the operation parameters ( names and values).  The authentication type is DIGEST.

    To check the status of server 11, for example, we use the following DMR:

    /host=host1/server=Server11:read-attribute(name=server-state)
    {
     "outcome" => "success",
     "result" => "STOPPED"
    }

    With the REST API, we would do this instead:

    $ curl --digest 'http://localhost:9990/management' --header "Content-type:application/json"-d '{"operation":"read-attribute", "address":["host","host1","server","Server11"],"name":"server-state","json.pretty":1}' -u admin:Admin01#
    {
     "outcome" : "success",
     "result" : "STOPPED"
    }

    REST API  Deployment

    To deploy the helloworld-html5 application on the singleton server group using the REST management API, we simply have to add the helloworld-html5-war on the server group.

    This is the DRM command to complete our operation:

    /server-group=singleton-server-group/deployment=jboss-helloworld-html5.war:add(enabled=true)

    From this we can build API parameters, and the REST query can be deduced from DMR:

    operation=add
     address=["server-group","singleton-server-group","deployment","jboss-helloworld-html5.war"]
     parameters=("enabled":"true")

    And our REST command:

    $ curl --digest 'http://localhost:9990/management' --header "Content-type:application/json"-d '{"operation":"add", "address":["server-group","singleton-server-group","deployment","jboss-helloworld-html5.war"],"enabled":"true","json.pretty":1}' -u admin:Admin01#
    {
     "outcome" : "success",
     "result" : null,
     "server-groups" : {"singleton-server-group" : {"host" : {"host2" : {"Server23" : {"response" : {
     "outcome" : "success",
     "result" : null
     }}}}}}
    }
    

    This command deploys the application on instance server 23, the only member of the singleton-server-group, and enables it. Remember server 23's HTTP port is 8580

    Capture d’écran 2016-07-20 à 13.58.40

    The application is now deployed on the five servers, and this concludes our chapter on deployment. We now know how the different deployment options can be used, depending on our projects requirements.

    The REST API is interesting if we have a continuous integration tools like Jenkins on some WebHooks to trigger deployments after the builds, but DMR is clearly easier for scripting and the command line.

     

     

     

    Last updated: March 16, 2023

    Recent Posts

    • A deep dive into Apache Kafka's KRaft protocol

    • Staying ahead of artificial intelligence threats

    • Strengthen privacy and security with encrypted DNS in RHEL

    • How to enable Ansible Lightspeed intelligent assistant

    • Why some agentic AI developers are moving code from Python to Rust

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2025 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue