我似乎无法弄清楚如何将标头添加到我的restlet响应中。当我查看Response
对象中的可用方法时,我看到的只有setStatus
,setEntity
和setAttributes
,但这些方法都没有告诉我如何设置自定义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()));
}
}
答案 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获得)。