如何通过firefox插件RESTClient更改GET-Request的Content-Type

时间:2013-07-31 07:23:46

标签: rest jersey content-type rest-client media-type

我想发送GET-Requests,这些请求将由我的REST-API回答。 我的java程序目前使用JAX-RS Reference Implementation Jersey支持text/plaintext/htmltext/xmlapplication/json

要测试我正在使用firefox插件RESTClient的不同媒体类型。要更改媒体类型,我应使用name=Content-Type调整标题,例如value=text/xml

enter image description here

但无论我选择哪个text/html,RESTClient都会返回Content-Type。现在修改返回结果类型的唯一方法是取消注释我的代码中的html-section。然后text/plain将是返回的媒体类型,但仍然忽略RESTClient的Content-Type参数。

我正在使用最新版本的RESTClient,现在是2.0.3。你能帮我吗?

这是我的Java代码:

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

//Sets the path to base URL + /hello
@Path("/hello")
public class restProvider {

  // This method is called if TEXT_PLAIN is request
  @GET
  @Produces(MediaType.TEXT_PLAIN)
  public String sayPlainTextHello() {
    return "Hello little World";
  }

  // This method is called if XML is request
  @GET
  @Produces(MediaType.TEXT_XML)
  public String sayXMLHello() {
    return "<?xml version=\"1.0\"?>" + "<hello> Hello little World" + "</hello>";
  }

  // This method is called if HTML is request
  // Uncommenting the following 6 lines will result in returning text/plain
  @GET
  @Produces(MediaType.TEXT_HTML)
  public String sayHtmlHello() {
    return "<html> " + "<title>" + "Hello World" + "</title>"
        + "<body><h1>" + "Hello little World" + "</h1></body>" + "</html> ";
  }

  // This method is called if JSON is requested
  @GET
  @Produces(MediaType.APPLICATION_JSON)
  public String getJson(){
      Gson gsonObject = new Gson();
      return gsonObject.toJson(helloClass);
  }

} 

1 个答案:

答案 0 :(得分:10)

我认为除了Content-Type标题之外,我还必须指定您想要的媒体类型的Accept标题,该标题说明您的请求的内容类型,而不是响应的内容类型。由Accept标题

设置

因此,请使用接受标头代替Content-Type标头