我们正在使用libjetty在Java中实现服务器守护程序。基本上,它会侦听请求并返回结果。没什么好看的,没有servlet或类似的东西。
基本上,我们有这个类处理所有请求:
@Path("/")
public class RestService {
@GET
@Produces("application/json")
public String index() throws URISyntaxException {
JSONObject someJSONObject = new JSONObject();
return someJSONObject.toString();
}
}
现在我需要调整响应头,特别是“Server”头。我用Google搜索,但无法为此找到解决方案。