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

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

本文整理了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

@Override
public String contextPath() {
 return req.contextPath();
}

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

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

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

private String template(Request req) {
 String contextPath = req.contextPath();
 return "<script>"
   + "window.LiveReloadOptions = {"
   + "host: '" + req.hostname() + "',"
   + "port: '" + req.port() + contextPath + "'"
   + "};"
   + "</script>\n"
   + "<script src=\"" + contextPath + "/livereload.js\"></script>";
}

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

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

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

@Override
public String contextPath() {
 return req.contextPath();
}

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

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

相关文章