Web服务在一个EAR中有两个不同的上下文根 - JBoss 6.1

时间:2013-08-23 06:55:40

标签: java web-services jboss java-ee-6 jboss6.x

是否可以部署两个具有不同上下文根的Web服务?每个网络服务都处于战争状态。战争和其他文库都挤满了人。我正在尝试这样的事情:

                <modules>
                    <webModule>
                        <groupId>group</groupId>
                        <artifactId>war1</artifactId>
                        <contextRoot>/api/test</contextRoot>
                    </webModule>
                    <webModule>
                        <groupId>group</groupId>
                        <artifactId>war2</artifactId>
                        <contextRoot>/gateway/test/bs</contextRoot>
                    </webModule>
                </modules>

但它不起作用。

java.lang.IllegalStateException: Context root must be the same for all deployed endpoints

我正在使用JBoss 6.1

1 个答案:

答案 0 :(得分:0)

您无法部署具有相同上下文名称的两个单独的Web应用程序。

如果要部署多个服务端点,则无需将应用程序打包在单独的war文件中,而是需要在WEB-INF / ... jaxws.xml文件中配置多个端点。检查以下内容。

http://www.soa4j.com/RequestContentFromID?q=370576046290944130&lang=en