有没有办法知道Java Jersey中的预检请求标头,还是有办法向预检请求发送不同的响应?
假设我有以下代码:
@Path("/releaseClient")
@POST
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public JSONObject releaseClient(JSONObject clientAndUser, @Context HttpServletRequest request) throws JSONException{
int clientId = clientAndUser.getInt("id");
String userId = clientAndUser.getString("user");
JSONObject res = new JSONObject();
// Check if profile is locked by current user and if so release profile
if(clientLockService.unlockClient(clientId, userId)){
res.put("success", clientService.returnClientInfo(clientId));
} else {
// If not then set error message
res.put("error", "Profile is not locked by current user");
}
return res;
}
现在,首先浏览器将发送预检请求。有没有一种方法可以操纵预检请求的响应标头?
最佳答案
除非要创建一堆@OPTIONS
方法,否则不能在资源方法中执行此操作,因为预检是OPTIONS请求。相反,您应该使用filter。您可以看到示例实现here。这不是最好的实现,因为它实际上不检查预检,它只是发送所有请求的CORS标头。如果您查看该帖子的底部,它将链接到RESTEasy过滤器实现以处理CORS。这是一个更好的实现。您可能想研究那个以获得一些想法