gpt4 book ai didi

java - 有没有办法在 REST API Jersey 中检测预检请求?

转载 作者:行者123 更新时间:2023-11-30 08:02:34 25 4
gpt4 key购买 nike

有没有办法知道 Java Jersey 中的预检请求 header ,或者有没有办法向预检请求发送不同的响应?

假设我有以下代码:

@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;
}

现在首先浏览器将发送预检请求。有没有一种方法可以操纵预检请求的响应 header

最佳答案

你不能在资源方法中这样做,除非你想创建一堆 @OPTIONS 方法,因为预检是一个 OPTIONS 请求。相反,您应该使用 filter .您可以看到一个示例实现 here .这不是最好的实现,因为它实际上并不检查预检,它只是为所有请求发送 CORS header 。如果您查看帖子的底部,它将链接到过滤器的 RESTEasy 实现来处理 CORS。这是一个更好的实现。你可能想研究那个以获得一些想法

关于java - 有没有办法在 REST API Jersey 中检测预检请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36873031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com