是否可以部署两个具有不同上下文根的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
答案 0 :(得分:0)
您无法部署具有相同上下文名称的两个单独的Web应用程序。
如果要部署多个服务端点,则无需将应用程序打包在单独的war文件中,而是需要在WEB-INF / ... jaxws.xml文件中配置多个端点。检查以下内容。
http://www.soa4j.com/RequestContentFromID?q=370576046290944130&lang=en