我刚刚从jhipster 4.14.5升级到5.0.1
我没有使用任何服务发现。在版本4.14.5的早期版本中,我至少可以使用index.html
在版本> = 5.0.0中,我无法访问登录页面。另外,我创建的其余所有api都不起作用。
curl -v -X GET 'http://localhost:9091/api/animals'
Note: Unnecessary use of -X or --request, GET is already inferred.
* Trying ::1...
* TCP_NODELAY set
* Connected to localhost (::1) port 9091 (#0)
> GET /api/animals HTTP/1.1
> Host: localhost:9091
> User-Agent: curl/7.54.0
> Accept: */*
>
< HTTP/1.1 404 Not Found
< Connection: keep-alive
< Content-Length: 0
< Date: Thu, 28 Jun 2018 11:27:03 GMT
<
* Connection #0 to host localhost left intact
相同的东西在版本4.15.5中可以正常工作。