2

HTTPS 连接子域

我希望使用 HTTPS 设置我的 wickets 1.5 应用程序。

我已将以下内容添加到我的应用程序类中。

setRootRequestMapper(new HttpsMapper(getRootRequestMapper(), new HttpsConfig(8080, 8443)));
mountPage("/go/securepage", securePage.class);

"@RequireHttps"正如我用链接正确地使用 HTTPS对securePage.class 进行了注释一样。

但是我想将所有 https 连接转发到一个单独的子域。

所以,而不是去

https://www.example.com/go/securepage用户被转发到 https://securepage.example.com/go/securepage

如何才能做到这一点?

4

1 回答 1

3

我从来不需要这样做,但看看它的来源HttpsMapper似乎你可以通过覆盖来做到这一点HttpsMapper.mapHandler()

public Url mapHandler(IRequestHandler requestHandler) {
        Url url = delegate.mapHandler(requestHandler);
        switch (checker.getProtocol(requestHandler)){
            case HTTP :
                url.setProtocol("http");
                url.setPort(httpsConfig.getHttpPort());
                break;
            case HTTPS :
                url.setProtocol("https");
                url.setPort(httpsConfig.getHttpsPort());
                break;
        }
        return url;
    }

因此,您可以像这样覆盖它:

setRootRequestMapper(new HttpsMapper(getRootRequestMapper(), new HttpsConfig(8080, 8443)){
    @Override
    public Url mapHandler(IRequestHandler requestHandler) {
        Url url = super.mapHandler(requestHandler);
        if ("https".equals(url.getProtocol)){
            // Force the HostName for HTTPS requests
            url.setHost("securepage.example.com");   
        }
        return url;
    }
});
于 2011-10-20T10:51:39.523 回答