我正试图通过泽西客户端请求网络服务:
WebResource service = client.resource(UriBuilder.fromUri("http://localhost:8080/jersey-example-new/").build());
System.out.println(service.path("rs/").path("account/details/1").accept(MediaType.APPLICATION_JSON).get(String.class));
但我明白了:
GET http://localhost:8080/jersey-example-new/rs/account/details/1 returned a response status of 406 Not Acceptable
请注意,网址路径http://localhost:8080/jersey-example-new/rs/account/details/1
可在浏览器中使用。 java客户端请求有什么问题?
端点代码:
@Path("account")
public class AccountDetailsService {
@GET
@Path("/details/{param}")
@Produces(MediaType.TEXT_PLAIN)
public Response getAccountDetails(@PathParam("param") String accountName) {
String output = "Account Name : " + accountName;
return Response.status(200).entity(output).build();
}
}
答案 0 :(得分:1)
你应该改变
System.out.println(service.path("rs/").path("account/details/1").accept(MediaType.APPLICATION_JSON).get(String.class));
要
System.out.println(service.path("rs/").path("account/details/1").accept(MediaType.TEXT_PLAIN).get(String.class));
您只生成TEXT_PLAIN,但是您请求媒体类型APPLICATION_JSON(通过接受标头),这就是您获得响应的原因,该请求是不可接受的。