本文整理匯總了Java中javax.ws.rs.core.UriBuilder.replacePath方法的典型用法代碼示例。如果您正苦於以下問題:Java UriBuilder.replacePath方法的具體用法?Java UriBuilder.replacePath怎麽用?Java UriBuilder.replacePath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.ws.rs.core.UriBuilder
的用法示例。
在下文中一共展示了UriBuilder.replacePath方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: filter
import javax.ws.rs.core.UriBuilder; //導入方法依賴的package包/類
@Override
public void filter(ContainerRequestContext requestContext) throws IOException {
UriInfo uriInfo = requestContext.getUriInfo();
UriBuilder hostUriBuilder = uriInfo.getRequestUriBuilder();
// get host from header forwarded host if set
String forwardedHost = requestContext.getHeaderString(HttpHeaders.X_FORWARDED_HOST);
LOG.debug("x-forwarded-host: {}", forwardedHost);
URI builtRequestUri = hostUriBuilder.build();
String replacementUri = builtRequestUri.getHost() + builtRequestUri.getPath();
if (forwardedHost != null) {
UriBuilder forwardedHostUriBuilder =
UriBuilder.fromUri("http://" + forwardedHost.split(",")[0]);
replacementUri = forwardedHostUriBuilder.build().getHost() + builtRequestUri.getPath();
}
hostUriBuilder.replacePath(replacementUri);
LOG.debug("Set new request path to {} (was {})", hostUriBuilder, uriInfo.getAbsolutePath());
requestContext.setRequestUri(hostUriBuilder.build());
}
示例2: uriOverride
import javax.ws.rs.core.UriBuilder; //導入方法依賴的package包/類
/**
* Uriのオーバーライド処理.
* @param request 加工するリクエスト
*/
private void uriOverride(final ContainerRequest request) {
String xForwardedProto = request.getHeaderValue(PersoniumCoreUtils.HttpHeaders.X_FORWARDED_PROTO);
String xForwardedHost = request.getHeaderValue(PersoniumCoreUtils.HttpHeaders.X_FORWARDED_HOST);
String xForwardedPath = request.getHeaderValue(PersoniumCoreUtils.HttpHeaders.X_FORWARDED_PATH);
UriBuilder bub = request.getBaseUriBuilder();
UriBuilder rub = request.getRequestUriBuilder();
if (xForwardedProto != null) {
bub.scheme(xForwardedProto);
rub.scheme(xForwardedProto);
}
if (xForwardedHost != null) {
bub.host(xForwardedHost);
rub.host(xForwardedHost);
}
if (xForwardedPath != null) {
bub.replacePath("/");
// クエリを含んでいる場合は、クエリを削除してリクエストパスに設定する
if (xForwardedPath.contains("?")) {
xForwardedPath = xForwardedPath.substring(0, xForwardedPath.indexOf("?"));
}
rub.replacePath(xForwardedPath);
}
request.setUris(bub.build(), rub.build());
}