2015-02-24 44 views
1

我剛剛在Windows上使用JHipster創建了一個新應用程序。我可以使用「mvn spring-boot:run」運行它。不過,我想要自動重新加載頁面,所以想使用「grunt serve」。當我運行它時,它開始很好。但是當我在Chrome瀏覽器中訪問「http://localhost:3000/」時,它只是在那裏等待服務器連接。我可以去http://localhost:3001/就好,看到BrowserSync,但沒有任何服務器列在「當前連接」部分。'grunt serve'開頭很好但從未加載

這裏是出把我跑後看「咕嚕服務」:

C:\mydev\pmi>grunt serve 
Running "clean:server" (clean) task 
>> 0 paths cleaned. 

Running "wiredep:app" (wiredep) task 

Running "wiredep:test" (wiredep) task 

Running "ngconstant:dev" (ngconstant) task 
Creating module pmiApp at src/main/webapp/scripts/app/app.constants.js...OK 

Running "concurrent:server" (concurrent) task 

Running "browserSync:dev" (browserSync) task 
[BS] [info] Proxying: http://localhost:8080 
[BS] Access URLs: 
-------------------------------------- 
     Local: http://localhost:3000 
    External: http://10.255.247.72:3000 
-------------------------------------- 
      UI: http://localhost:3001 
UI External: http://10.255.247.72:3001 
-------------------------------------- 
[BS] Watching files... 

Running "watch" task 
Waiting... 

我從來沒有看到任何瀏覽器(Chrome瀏覽器都不火狐也沒有連接)。

我看到另一個帖子,提示我刪除了我的node-modules目錄並重新安裝使用「npm install」。我做到了,得到了同樣的結果。

我一直在看它今晚一個半小時。昨晚,一些事情終於引發,並開始工作。但我今晚得到同樣的問題。我不知道昨晚怎麼終於搞定了。昨晚我一小時有同樣的問題。

我很難過。

+0

我也有同樣的錯誤,任何想法? – 2015-04-02 19:37:54

回答

0

D'哦

我是錯誤的假設,即「咕嚕發球」做同樣的事情(只有更好)爲「MVN彈簧啓動:運行」下。並非如此。

「mvn spring-boot:run」運行後端Web服務器並處理REST端點。

'grunt serve'處理事物的前端angularJS端。

回想起現在很明顯的文檔。

什麼是Noob。

1

你不是唯一一個:)。我也遇到了麻煩。

只是爲了澄清。您需要同時運行

:如果您正在使用gradle這個 'MVN彈簧引導運行'

'咕嚕服務'

0

你可以運行這個命令:

./gradlew bootRun 

在我的情況下,以下消息通知您可以訪問彈簧應用程序: > Building 85%>:bootRun

之後,你可以運行這個命令:

grunt serve 

消息「運行 「監視」 任務等待...「將出現在控制檯,但波紋管 瀏覽器會自動打開並顯示地址:

http://localhost:3000/#/ 
相關問題