使用Jersey客户端设置"Origin"和"Access-Control-Request-Method"标头

SkP*_*SkP 6 jersey

泽西岛客户端没有为我设置"origin"标题,我想知道我是否遗漏了任何东西.

String origin="http://www.localhost.com";
ClientResponse response= webResourceBuilder("my/endpoint")
            .header( "origin" , origin)
            .header("Access-Control-Request-Method", "POST")
            .header("xorigin", origin)
            .header("whatever", "test")
            .accept("application/xml")
            .get(ClientResponse.class);
Run Code Online (Sandbox Code Playgroud)

当我在运行时检查服务器端的请求标头时,我找到"xorigin"和"what"标题,但不是"origin"和"Access-Control-Request-Method"

我该如何设置这些标题?

Mic*_*dos 14

默认Jersey客户端使用HttpURLConnection将请求发送到服务器.HttpUrlConnection限制在请求中发送一些标头,请参阅:

/*
 * Restrict setting of request headers through the public api
 * consistent with JavaScript XMLHttpRequest2 with a few
 * exceptions. Disallowed headers are silently ignored for
 * backwards compatibility reasons rather than throwing a
 * SecurityException. For example, some applets set the
 * Host header since old JREs did not implement HTTP 1.1.
 * Additionally, any header starting with Sec- is
 * disallowed.
 *
 * The following headers are allowed for historical reasons:
 *
 * Accept-Charset, Accept-Encoding, Cookie, Cookie2, Date,
 * Referer, TE, User-Agent, headers beginning with Proxy-.
 *
 * The following headers are allowed in a limited form:
 *
 * Connection: close
 *
 * See http://www.w3.org/TR/XMLHttpRequest2.
 */
private static final boolean allowRestrictedHeaders;
private static final Set<String> restrictedHeaderSet;
private static final String[] restrictedHeaders = {
    /* Restricted by XMLHttpRequest2 */
    //"Accept-Charset",
    //"Accept-Encoding",
    "Access-Control-Request-Headers",
    "Access-Control-Request-Method",
    "Connection", /* close is allowed */
    "Content-Length",
    //"Cookie",
    //"Cookie2",
    "Content-Transfer-Encoding",
    //"Date",
    //"Expect",
    "Host",
    "Keep-Alive",
    "Origin",
    // "Referer",
    // "TE",
    "Trailer",
    "Transfer-Encoding",
    "Upgrade",
    //"User-Agent",
    "Via"
};
Run Code Online (Sandbox Code Playgroud)

如何处理这种情况有两种选择:

  1. 使用默认的Jersey客户端,您需要设置系统属性

    -Dsun.net.http.allowRestrictedHeaders=true
    
    Run Code Online (Sandbox Code Playgroud)

    这会抑制从请求中删除受限制的标头.

  2. 使用似乎没有此限制的ApacheHttpClient/ApacheHttpClient4.只需将以下依赖项之一添加到项目中:

    <dependency>
        <groupId>com.sun.jersey.contribs</groupId>
        <artifactId>jersey-apache-client</artifactId>
        <version>1.15</version>
    </dependency>
    
    Run Code Online (Sandbox Code Playgroud)

    要么

    <dependency>
        <groupId>com.sun.jersey.contribs</groupId>
        <artifactId>jersey-apache-client4</artifactId>
        <version>1.15</version>
    </dependency>
    
    Run Code Online (Sandbox Code Playgroud)

    然后创建您的客户端,如:

    ApacheHttpClient.create(com.sun.jersey.api.client.config.ClientConfig);
    
    Run Code Online (Sandbox Code Playgroud)

    要么

    ApacheHttpClient4.create(com.sun.jersey.api.client.config.ClientConfig);
    
    Run Code Online (Sandbox Code Playgroud)


小智 8

或者只是在设置标题之前动态设置此属性(如果您不想将其设置为全局设置):

System.setProperty("sun.net.http.allowRestrictedHeaders", "true");
Run Code Online (Sandbox Code Playgroud)