当我使用 wildfly maven插件将我的java ee应用程序部署到具有此POM配置的wildfly 8.1.0独立Web应用程序服务器时:
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>1.0.2.Final</version>
<configuration>
<hostname>127.0.0.1</hostname>
<port>9991</port>
<username>root</username>
<password>manager</password>
</configuration>
</plugin>
如果我运行 mvn wildfly:deploy ,则部署应用程序并从服务器日志控制台获取此消息:
....
21:45:42,100 INFO [org.jboss.as.server.deployment] (MSC service thread 1-8) JBAS015876: Starting deployment of "MyApp-0.0.1.war" (runtime-name: "MyApp-0.0.1.war")
21:45:42,819 INFO [org.wildfly.extension.undertow] (MSC service thread 1-7) JBAS017534: Registered web context: /MyApp-0.0.1
21:45:44,319 INFO [org.jboss.as.server] (management-handler-thread - 1) JBAS018562: Redeployed "MyApp-0.0.1.war"
....
如果我将插件的配置部分中的 name 参数指定到POM中,如下所示:
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>1.0.2.Final</version>
<configuration>
<hostname>127.0.0.1</hostname>
<port>9991</port>
<username>root</username>
<password>manager</password>
<name>WebApp</name>
</configuration>
</plugin>
部署了应用程序,但未指定Web Context,如果我转到:http://127.0.0.1:8080/WebApp
服务器显示错误页面404!使用此参数部署应用程序时,服务器控制台日志仅显示以下消息:
....
21:44:28,299 INFO [org.jboss.as.repository] (management-handler-thread - 1) JBAS014900: Content added at location D:\Wildfly\standalone\data\content\c0\e78f2599016bf33187b1049001b210040b829a\content
21:44:28,299 INFO [org.jboss.as.server.deployment] (MSC service thread 1-1) JBAS015876: Starting deployment of "WebApp" (runtime-name: "WebApp")
21:44:28,705 INFO [org.jboss.as.server] (management-handler-thread - 1) JBAS018559: Redeployed "WebApp" (runtime-name : "WebApp")
....
为什么,只有名称规范,才会注册Web上下文?我可以在配置参数中指定Web上下文,例如应用程序名称吗?有人可以帮我吗?
答案 0 :(得分:2)
我已经尝试了这一点,事实证明你必须设置为WebApp.war以使其正常工作。
我个人更喜欢直接在使用标签的部分设置名称,因为这更常见,你可以省略文件扩展名。