2016-07-22 152 views
0

我嘗試使用wildfly-maven-plugin來構建示例服務。 的源代碼是:如何通過wildfly-maven-plugin與WildFly服務器運行服務?

https://github.com/wildfly/quickstart/tree/10.x/helloworld-html5

我想簡單的使用wildfly - Maven的插件中看到maven pom.xml:

  <plugin> 
      <groupId>org.wildfly.plugins</groupId> 
      <artifactId>wildfly-maven-plugin</artifactId> 
      <version>1.1.0.Alpha10</version> 
     </plugin> 

要構建測試服務器類似命令:

mvn wildfly:run 

運行服務器。

我可以找到README.md 但寫入的網址似乎是錯誤的。

我測試鏈接:

http://localhost:8080/jboss-helloworld-html5/hello/json/YOUR_NAME

http://localhost:8080/hello/json/YOUR_NAME

所有給我404錯誤。

它有什麼不對?

如何讓mvn wildfly:run可以運行這個項目?

+1

pom表示戰爭名稱將是* wildfly-helloworld-html5 *,而不是* jboss-helloworld-html5 *。 – Gimby

回答

0

由於Gimby表示您的上下文路徑應該是wildfly-helloworld-html5。它看起來像自述文件不正確。該網址應該是http://localhost:8080/wildfly-helloworld-html5/hello/xml/YOUR_NAMEhttp://localhost:8080/wildfly-helloworld-html5/hello/json/YOUR_NAME

另外,當你開始你應該看到在控制檯上的日誌消息,如下所示。

08:22:18,281 INFO [org.wildfly.extension.undertow] (ServerService Thread Pool -- 58) WFLYUT0021: Registered web context: /wildfly-helloworld-html5 

這會給你註冊的上下文。

相關問題