在Java中,如何设置Restlet响应的头?

时间:2010-09-17 00:03:42

标签: java http-headers response restlet

我似乎无法弄清楚如何将标头添加到我的restlet响应中。当我查看Response对象中的可用方法时,我看到的只有setStatussetEntitysetAttributes,但这些方法都没有告诉我如何设置自定义http标头关于回应。

例如,我有GET调用返回类似于以下内容的内容:

HTTP/1.1 200 OK
Content-Type: text/json
Content-Length: 123
Some-Header: the value
Some-Other-Header: another value

{
  id: 111,
  value: "some value this could be anything",
  diagnosis: {
    start: 12552255,
    end: 12552261,
    key: "ABC123E11",
    source: "S1",
  }
}

无论如何。在handleGet方法中,我这样处理它:

final MediaType textJsonType = new MediaType("text/json");

@Override
public void handleGet() {
  log.debug("Handling GET...");
  final Response res = this.getResponse();

  try {
    final MyObject doc = this.getObj("hello", 1, "ABC123E11", "S1");
    final String docStr = doc.toString();

    res.setStatus(Status.SUCCESS_OK);
    res.setEntity(docStr, textJsonType);

    // need to set Some-header, and Some-other-header here!
  }
  catch(Throwable t) {
    res.setStatus(Status.SERVER_ERROR_INTERNAL);
    res.setEntity(new TextRepresentation(t.toString()));
  }
}

1 个答案:

答案 0 :(得分:10)

因为Restlet更多地是关于REST架构原则而不是HTTP,它试图与协议无关,并且不直接公开HTTP头。但是,它们存储在响应的org.restlet.http.headers属性中(作为Form)。请注意,您只能以这种方式设置自定义标头,而不是标准标头(这些标题由框架直接处理,例如Content-Type取决于Representation的{​​{1}})。

请参阅此示例: http://blog.arc90.com/2008/09/15/custom-http-response-headers-with-restlet/(链接内容也可从Internet Archive Wayback Machine获得)。