1.1.14.7.2. fejezet, Context-root

Ha a jboss-web.xml-ben megadjuk a szolgáltatásunk elérési útvonalát, akkor azt a context-root segítségével tehetjük meg:

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
    <context-root>/architect</context-root>
</jboss-web>

Ettől fogva a http://[hostname]/architect URL-ről érhető el a szolgáltatás.

JBoss Center: Multi-tier JavaEE EAR arche type

A sample-multi-tier-ear alprojekt pom.xml szerkesztésével változtatható meg a context-root:

...
    <build>
        <finalName>sample-multi-tier</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-ear-plugin</artifactId>
                <version>${version.ear.plugin}</version>
                <configuration>
...
                    <modules>
                        <webModule>
                            <groupId>hu.mycompany.sample</groupId>
                            <artifactId>sample-multi-tier-web</artifactId>
                            <contextRoot>/sample</contextRoot>
                        </webModule>
                    </modules>
...
                </configuration>
            </plugin>
        </plugins>
    </build>
...