jboss - deploy applications to JBoss

Author:Jeroen Hoekx

Synopsis

New in version 1.4.

Deploy applications to JBoss standalone using the filesystem

Options

parameter required default choices comments
deploy_path no /var/lib/jbossas/standalone/deployments
    The location in the filesystem where the deployment scanner listens
    deployment yes
      The name of the deployment
      src no
        The remote path of the application ear or war to deploy
        state no present
        • present
        • absent
        Whether the application should be deployed or undeployed

        Examples


        # Deploy a hello world application
        - jboss: src=/tmp/hello-1.0-SNAPSHOT.war deployment=hello.war state=present
        # Update the hello world application
        - jboss: src=/tmp/hello-1.1-SNAPSHOT.war deployment=hello.war state=present
        # Undeploy the hello world application
        - jboss: deployment=hello.war state=absent

        Note

        The JBoss standalone deployment-scanner has to be enabled in standalone.xml

        Note

        Ensure no identically named application is deployed through the JBoss CLI

        Table Of Contents

        Previous topic

        htpasswd - manage user files for basic authentication

        Next topic

        jira - create and modify issues in a JIRA instance