最近的Wildfly项目引入了一个Galleon应用程序,该应用程序允许创建较小的应用程序服务器。但是我找不到可用图层的完整列表。
医生建议:
galleon.sh install wildfly:current --dir=my-wildfly-server --layers=cdi,jaxrs
操作完成得很好,但是产生的Wildfly并没有真正引发我的SOAP之战。
13:33:25,243 INFO [org.jboss.as.repository] (DeploymentScanner-threads - 1) WFLYDR0001: Content added at location /opt/wf/soap/standalone/data/content/01/a5f89d915b85b778b64fcf071d45f0efa84f0b/content
13:33:25,261 INFO [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "soap01.war" (runtime-name: "soap01.war")
13:33:26,032 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 4) WFLYUT0021: Registered web context: '/soap01' for server 'default-server'
13:33:26,060 INFO [org.jboss.as.server] (DeploymentScanner-threads - 1) WFLYSRV0010: Deployed "soap01.war" (runtime-name : "soap01.war")
这场战争在完整的Wildfly上运作良好。 WSDL可用,服务正常。
没有名为jaxws的图层,所以我想jaxrs很好。
SOAP只是一个例子,很高兴看到层的完整列表。
答案 0 :(得分:2)
我们没有用于Web服务的层。这是我们可以添加的内容。完整的图层列表可以在以下位置找到:http://docs.wildfly.org/16/Admin_Guide.html#Galleon_Provisioning
我刚刚创建了https://issues.jboss.org/browse/WFLY-11795来跟踪此要求。
JF