我正在使用Jersey 1.8并且@Produces
注释与Response.header()
不同
@GET
@Produces(MediaType.TEXT_HTML)
public Response test(){
return Response.status(200).header("Content-Type", "application/json;charset=utf-8")
.entity("test response");
}
在这种情况下,响应内容类型是html还是json?
答案 0 :(得分:1)
我已经制作了一个小的Jax-RS程序来验证,Response
对象中设置的标头似乎会覆盖@Produces
注释。
您可以使用命令行实用程序curl
:
$ curl -s -i http://localhost:8080/myapp/myresource/hello
HTTP/1.1 200 OK
Content-Type: application/json;charset=utf-8
Content-Length: 21
Hello World with JSON
我的WS类似于你的WS:
@GET
@Path("/hello")
@Produces(MediaType.TEXT_HTML)
public Response helloWorld() {
return Response.status(200).header("Content-Type", "application/json;charset=utf-8")
.entity("Hello World with JSON").build();
}