当我期待json回复时,我的回答低于对象 -
<!DOCTYPE HTML><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
whole page content
</html>
我使用放心测试服务 -
Response response = given().accept(ContentType.JSON).when().get("link to my rest service");
甚至尝试过 - &gt;标题(&#34; Content-Type&#34;,&#34; application / json&#34;)和contentType(ContentType.JSON)但获得相同的结果
以下是其他服务代码 -
@GET
@Path("/getUser")
@Produces(MediaType.APPLICATION_JSON)
public Response getUser() {
User user = new User();
user.setfName("Abc");
user.setlName("Ben");
user.setRacf("A1234");
user.setEmpId("abcd12");
return
Response.ok(user).type(MediaType.APPLICATION_JSON_TYPE).build();