简体   繁体   中英

wildfly maven plugin domain deploy

pom.xml

<plugin>
            <groupId>org.wildfly.plugins</groupId>
            <artifactId>wildfly-maven-plugin</artifactId>
            <version>1.1.0.Beta1</version>
            <configuration>
                <domain>
                  <server-groups>
                     <server-group>main-server-group</server-group>
                  </server-groups>
                </domain>
            </configuration>
        </plugin>

in eclipse Run configurations is

org.wildfly.plugins:wildfly-maven-plugin:run -Dwildfly.version=8.0.0.CR1

my question is why the domain path below is empty

{$path of pom.xml}\target\wildfly-run\wildfly-8.0.0.CR1\domain\tmp

but the path of standalone

{$path of pom.xml}\target\wildfly-run\wildfly-8.0.0.CR1\standalone\tmp\vfs\temp\tempd2a5c6044ecaf908\content-b94122b24d483bc5\***(xxx.war files unzip here)

I mean,the official guide https://docs.jboss.org/wildfly/plugins/maven/latest/examples/deployment-example.html of the pom.xml configurations is to deploy and run the xxx.war to domain servers,why the commands above doesn't work,did I miss something?

The run goal only works with a standalone server. It will not launch a domain server. If you want to deploy your application to existing domain server that is already running you need to use the deploy goal.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM