5

我想发送 GET-Requests,我的 REST-API 会回答这些请求。我的java 程序目前支持text/plaintext/html和使用 JAX-RS 参考实现 Jersey。text/xmlapplication/json

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

在此处输入图像描述

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

我正在使用最新版本的 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);
  }

} 
4

1 回答 1

10

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

所以使用Accept标头而不是 Content-Type 标头

于 2013-08-02T16:56:06.830 回答