我正在使用Rest-Assured来测试我的Rest API。 自从运行
以来,webservice似乎运行正常 curl -u "admin:admin" http://localhost:8888/users/
我的用户为json。
然后,在尝试使用Rest-Assured
的简单请求时 RestAssured.authentication = basic("admin", "admin");
expect().statusCode(200).when().get("http://localhost:8888/users/");
给我输出
Exception in thread "main" org.apache.http.conn.HttpHostConnectException: Connection to http://localhost:8888 refused
at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:158)
…
这可能是什么?
答案 0 :(得分:2)
解决。已从localhost
更改为127.0.0.1
并且有效。 cURL /浏览器都与localhost一起工作有点奇怪。猜猜这可能是路由问题。