org.jooby.Request.contextPath()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.1k)|赞(0)|评价(0)|浏览(317)

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

Request.contextPath介绍

[英]Application path (a.k.a context path). It is the value defined by: application.path. Default is: / This method returns empty string for /. Otherwise, it is identical the value of application.path.
[中]应用程序路径(又称上下文路径)。它是由以下函数定义的值:[$0$]。默认值为:/此方法返回[$2$]的空字符串。否则,它与application.path的值相同。

代码示例

代码示例来源:origin: jooby-project/jooby

  1. @Override
  2. public String contextPath() {
  3. return req.contextPath();
  4. }

代码示例来源:origin: jooby-project/jooby

  1. public static String getFullRequestURL(WebContext ctx, Request req, String path) {
  2. StringBuilder url = new StringBuilder();
  3. url.append(ctx.getScheme()).append("://").append(ctx.getServerName()).append(":")
  4. .append(ctx.getServerPort());
  5. url.append(req.contextPath()).append(path);
  6. req.queryString().ifPresent(query -> url.append("?").append(query));
  7. return url.toString();
  8. }

代码示例来源:origin: jooby-project/jooby

  1. private String template(Request req) {
  2. String contextPath = req.contextPath();
  3. return "<script>"
  4. + "window.LiveReloadOptions = {"
  5. + "host: '" + req.hostname() + "',"
  6. + "port: '" + req.port() + contextPath + "'"
  7. + "};"
  8. + "</script>\n"
  9. + "<script src=\"" + contextPath + "/livereload.js\"></script>";
  10. }

代码示例来源:origin: jooby-project/jooby

  1. @Override
  2. public String getFullRequestURL() {
  3. String query = req.queryString().map(it -> "?" + it).orElse("");
  4. return getScheme() + "://" + getServerName() + ":" + getServerPort() + req.contextPath() + req
  5. .path() + query;
  6. }

代码示例来源:origin: org.jooby/jooby

  1. @Override
  2. public String contextPath() {
  3. return req.contextPath();
  4. }

代码示例来源:origin: org.jooby/jooby-pac4j

  1. @Override
  2. public String getFullRequestURL() {
  3. String query = req.queryString().map(it -> "?" + it).orElse("");
  4. return getScheme() + "://" + getServerName() + ":" + getServerPort() + req.contextPath() + req
  5. .path() + query;
  6. }

相关文章