在Generationg成功开发了新的Jshipster 3应用程序之后,我很难使用gulp serve为该应用程序提供服务。

我正在使用Ubuntu 16.04和npm 3.9,当我尝试运行gulp serve时,出现以下错误:

enter image description here

当我访问http://localhost:9000/时,我在浏览器上收到以下消息:

    Error: connect ECONNREFUSED 127.0.0.1:8080
   at Object.exports._errnoException (util.js:870:11)
   at exports._exceptionWithHostPort (util.js:893:20)
   at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1063:14)

有什么建议吗? :(

最佳答案

该错误表明 gulp无法连接到127.0.0.1:8080地址上的后端,这很可能意味着您尚未启动后端。

您应该使用mvn spring-boot:runmvn命令启动Spring应用程序,这将在http://localhost:8080地址上启动该应用程序。

在这里阅读更多:https://jhipster.github.io/development/

09-25 10:42
查看更多