我在嵌入式 Jetty 应用程序中使用 Jersey。我有一个这样的重定向:
URI uri = URI.create(url);
return Response.seeOther(uri).build();
seeOther 是这样的:
public static ResponseBuilder seeOther(URI location) {
ResponseBuilder b = status(Status.SEE_OTHER).location(location);
return b;
}
但是,该重定向也有 303 代码。如果我明确设置位置并通过 200 OK 它不会重定向。
当我有 200 OK 状态时如何重定向页面?