请放心 - 预期内容类型" JSON"与实际内容类型不匹配" text / html"

时间:2017-07-30 18:20:27

标签: json rest

当我期待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();

0 个答案:

没有答案