org.eclipse.jetty.server.Request.setURIPathQuery()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(6.4k)|赞(0)|评价(0)|浏览(99)

本文整理了Java中org.eclipse.jetty.server.Request.setURIPathQuery方法的一些代码示例,展示了Request.setURIPathQuery的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.setURIPathQuery方法的具体详情如下:
包路径:org.eclipse.jetty.server.Request
类名称:Request
方法名:setURIPathQuery

Request.setURIPathQuery介绍

暂无

代码示例

代码示例来源:origin: org.eclipse.jetty/jetty-rewrite

@Override
public void applyURI(Request request, String oldURI, String newURI) throws IOException
{
  String uri = request.getRequestURI();
  if (uri.startsWith("/"))
    uri = URIUtil.compactPath(uri);
  request.setURIPathQuery(uri);
}

代码示例来源:origin: org.eclipse.jetty/jetty-rewrite

/**
 * This method will add _query to the requests's queryString and also combine it with existing queryStrings in
 * the request. However it won't take care for duplicate. E.g. if request.getQueryString contains a parameter
 * <code>param1 = true</code> and _query will contain <code>param1=false</code> the result will be <code>param1=true&amp;param1=false</code>.
 * To cover this use case some more complex pattern matching is necessary. We can implement this if there's use
 * cases.
 *
 * @param request the request
 * @param oldURI the old URI
 * @param newURI the new URI
 * @throws IOException if unable to apply the URI
 */
@Override
public void applyURI(Request request, String oldURI, String newURI) throws IOException
{
  if (_query == null)
  {
    request.setURIPathQuery(newURI);
  }
  else
  {
    String queryString = request.getQueryString();
    if (queryString != null)
      queryString = queryString + "&" + _query;
    else
      queryString = _query;
    request.setURIPathQuery(newURI);
    request.setQueryString(queryString);
  }
}

代码示例来源:origin: org.eclipse.jetty/jetty-rewrite

@Override
public void applyURI(Request request, String oldURI, String newURI) throws IOException
{
  if (_query==null)
  {
    request.setURIPathQuery(newURI);
  }
  else
  {
    String query=(String)request.getAttribute("org.eclipse.jetty.rewrite.handler.RewriteRegexRule.Q");
    
    if (!_queryGroup && request.getQueryString()!=null)
      query=request.getQueryString()+"&"+query;
    request.setURIPathQuery(newURI);
    request.setQueryString(query);
  }
}

代码示例来源:origin: org.apache.knox/gateway-server

@Override
public void doHandle(final String target, final Request baseRequest,
  final HttpServletRequest request, final HttpServletResponse response)
  throws IOException, ServletException {
 final String newTarget = redirectContext + target;
 RequestUpdateHandler.ForwardedRequest newRequest = new RequestUpdateHandler.ForwardedRequest(
   request, redirectContext, newTarget);
 // if the request already has the /{gatewaypath}/{topology} part then skip
 if (!StringUtils.startsWithIgnoreCase(target, redirectContext)) {
  baseRequest.setPathInfo(redirectContext + baseRequest.getPathInfo());
  baseRequest.setURIPathQuery(redirectContext + baseRequest.getRequestURI());
  LOG.topologyPortMappingUpdateRequest(target, newTarget);
  nextHandle(newTarget, baseRequest, newRequest, response);
 } else {
  nextHandle(target, baseRequest, newRequest, response);
 }
}

代码示例来源:origin: apache/knox

@Override
public void doHandle(final String target, final Request baseRequest,
  final HttpServletRequest request, final HttpServletResponse response)
  throws IOException, ServletException {
 final String newTarget = redirectContext + target;
 RequestUpdateHandler.ForwardedRequest newRequest = new RequestUpdateHandler.ForwardedRequest(
   request, redirectContext, newTarget);
 // if the request already has the /{gatewaypath}/{topology} part then skip
 if (!StringUtils.startsWithIgnoreCase(target, redirectContext)) {
  baseRequest.setPathInfo(redirectContext + baseRequest.getPathInfo());
  baseRequest.setURIPathQuery(redirectContext + baseRequest.getRequestURI());
  LOG.topologyPortMappingUpdateRequest(target, newTarget);
  nextHandle(newTarget, baseRequest, newRequest, response);
 } else {
  nextHandle(target, baseRequest, newRequest, response);
 }
}

代码示例来源:origin: org.eclipse.jetty/jetty-rewrite

((Rule.ApplyURI)rule).applyURI(baseRequest, baseRequest.getRequestURI(), encoded);
else
  baseRequest.setURIPathQuery(encoded);

代码示例来源:origin: jenkinsci/winstone

public void handleAsync(HttpChannel channel) throws IOException, ServletException
{
  final HttpChannelState state = channel.getRequest().getHttpChannelState();
  final AsyncContextEvent event = state.getAsyncContextEvent();
  final Request baseRequest=channel.getRequest();
  final String path=event.getPath();
  if (path!=null)
  {
    // this is a dispatch with a path
    ServletContext context=event.getServletContext();
    String query=baseRequest.getQueryString();
    baseRequest.setURIPathQuery(URIUtil.addEncodedPaths(context==null?null:URIUtil.encodePath(context.getContextPath()), path));
    HttpURI uri = baseRequest.getHttpURI();
    baseRequest.setPathInfo(uri.getDecodedPath());
    if (uri.getQuery()!=null)
      baseRequest.mergeQueryParameters(query,uri.getQuery(), true); //we have to assume dispatch path and query are UTF8
  }
  final String target=baseRequest.getPathInfo();
  final HttpServletRequest request=(HttpServletRequest)event.getSuppliedRequest();
  final HttpServletResponse response=(HttpServletResponse)event.getSuppliedResponse();
  if (LOG.isDebugEnabled())
    LOG.debug("{} {} {} on {}", request.getDispatcherType(), request.getMethod(), target, channel);
  handle(target, baseRequest, request, response);
  if (LOG.isDebugEnabled())
    LOG.debug("handledAsync={} async={} committed={} on {}", channel.getRequest().isHandled(),request.isAsyncStarted(),response.isCommitted(),channel);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.eclipse.jetty.server

public void handleAsync(HttpChannel connection) throws IOException, ServletException
{
  final HttpChannelState state = connection.getRequest().getHttpChannelState();
  final AsyncContextEvent event = state.getAsyncContextEvent();
  final Request baseRequest=connection.getRequest();
  final String path=event.getPath();
  if (path!=null)
  {
    // this is a dispatch with a path
    ServletContext context=event.getServletContext();
    String query=baseRequest.getQueryString();
    baseRequest.setURIPathQuery(URIUtil.addPaths(context==null?null:context.getContextPath(), path));
    HttpURI uri = baseRequest.getHttpURI();
    baseRequest.setPathInfo(uri.getDecodedPath());
    if (uri.getQuery()!=null)
      baseRequest.mergeQueryParameters(query,uri.getQuery(), true); //we have to assume dispatch path and query are UTF8
  }
  final String target=baseRequest.getPathInfo();
  final HttpServletRequest request=(HttpServletRequest)event.getSuppliedRequest();
  final HttpServletResponse response=(HttpServletResponse)event.getSuppliedResponse();
  if (LOG.isDebugEnabled())
  {
    LOG.debug(request.getDispatcherType()+" "+request.getMethod()+" "+target+" on "+connection);
    handle(target, baseRequest, request, response);
    LOG.debug("RESPONSE "+target+"  "+connection.getResponse().getStatus());
  }
  else
    handle(target, baseRequest, request, response);
}

相关文章

微信公众号

最新文章

更多

Request类方法