- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
使用嵌入式tomcat,这段代码:
System.out.println("getServletPath: " + request.getServletPath());
System.out.println("getServletContext: " + request.getServletContext().getContextPath());
System.out.println("getServerName: " + request.getServerName());
System.out.println("getServerPort: " + request.getServerPort());
打印出来:
getServletPath: /example
getServletContext:
getServerName: localhost
getServerPort: 9090
这是否意味着:
request.getRequestDispatcher("/example/read.jsp").forward(request, response);
将查看此 URL forward(request, response)
到 JSP:
http://localhost:9090/example/read.jsp
?
有没有办法打印出绝对 URL getRequestDispatcher("relativePath")
正在寻址?
最佳答案
The
getRequestDispatcher
method takes aString
argument describing a path within the scope of the ServletContext. This path must be relative to the root of the ServletContext and begin with a ‘/’, or be empty. The method uses the path to look up a servlet, using the servlet path matching rules in Chapter 12, “Mapping Requests to Servlets”, wraps it with a RequestDispatcher object, and returns the resulting object. If no servlet can be resolved based on the given path, a RequestDispatcher is provided that returns the content for that path.
规则如下
- The container will try to find an exact match of the path of the request to the path of the servlet. A successful match selects the servlet.
- The container will recursively try to match the longest path-prefix. This is done by stepping down the path tree a directory at a time, using the ’/’ character as a path separator. The longest match determines the servlet selected.
- If the last segment in the URL path contains an extension (e.g. .jsp), the servlet container will try to match a servlet that handles requests for the extension. An extension is defined as the part of the last segment after the last ’.’ character.
- If neither of the previous three rules result in a servlet match, the container will attempt to serve content appropriate for the resource requested. If a "default" servlet is defined for the application, it will be used. Many containers provide an implicit default servlet for serving content.
你问
Does that mean that:
request.getRequestDispatcher("/example/display.jsp").forward(request, response); Will look at this URL to forward(request, response) to the JSP:
http://localhost:9090/example/display.jsp
?
不,它不发送 HTTP 请求,因此路径与 URI 无关。它更像是一个内部路径,Servlet 容器将尝试将其与 Servlet 的各种 url 映射相匹配。
你也问
Is there a way to print out what absolute URL getRequestDispatcher("relativePath") is addressing?
没有。而且它不完全是一个绝对 URL。它是可以由 Web 应用程序上下文中的某些资源处理的路径。
编辑后,您将 addWebapp
添加到您的 Tomcat
实例。
tomcat.addWebapp(null, "/view2/example2", new File("src/com/example/view/example").getAbsolutePath());
然后您将请求发送至
/view2/example2/read.jsp
我假设 read.jsp
在
src/com/example/view/example/
我相信它位于 Web 应用程序的可公开访问部分,因此 Servlet 容器可以呈现它并用它进行响应。
您还添加了一个带有 addContext
的 webapp,它似乎类似于 addWebapp
context = tomcat.addContext("", base.getAbsolutePath());
并将 servlet 映射添加到这个上下文。
Tomcat.addServlet(context, "example", new ExampleController());
context.addServletMapping("/example/*", "example");
关于 /example/*
无法处理 /example
我错了。
当您向
发送请求时/example
因为上下文路径是“”,上面的Context
将被使用并且映射将匹配上面注册的ExampleController
。您的 Servlet
代码将执行并到达
request.getRequestDispatcher("/view2/example2/read.jsp").forward(request, response);
注意 ServletRequest#getRequestDispatcher(String)
的 javadoc
The pathname specified may be relative, although it cannot extend outside the current servlet context.
也就是说,这个Servlet
,ExampleController
是在ServletContext
中注册的,映射到上下文路径""
,即。根。路径 /view2/example2/read.jsp
指的是另一个上下文。由于此上下文没有对应的映射,因此它以 404 响应。
您可以在不同的上下文中获取对另一个 Web 应用程序的引用。你必须使用 ServletContext#getContext(String)
.例如
ServletContext otherContext = request.getServletContext().getContext("/view2/example2");
现在您有了 ServletContext
,您可以为那个上下文中的资源获取一个RequestDispatcher
。
otherContext.getRequestDispatcher("/read.jsp").forward(request, response);
自 ServletContext#getRequestDispatcher(String)
州
The pathname must begin with a / and is interpreted as relative to the current context root.
最终答案:
getRequestDispatcher("path")
将在引用 JSP 文件时查看在 addWebapp
方法中设置的目录。如果显示空白页或 NullPointerException
,请确保您已完成以下操作:
addWebapp
定义。addContext
,然后运行 addWebApp
,这样它们都指向 ROOT
:File base = new File("src/com/example/view");
context = tomcat.addContext("", base.getAbsolutePath());
tomcat.addWebapp(null, "/", base.getAbsolutePath());
request.getRequestDispatcher("/example/read.jsp").forward(request, response);
指向 jsp,前提是目录/example 存在于 “src/com/example/view”
。关于java - getRequestDispatcher ("path") 在哪里看?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22997130/
为什么 getRequestDispatcher(String path) of the ServletRequest interface cannot extend outside the curr
如何使用位于另一个上下文中的 getRequestDispatcher() 重定向 Request 对象?或者我如何将存储在 Request 对象中的数据重定向到另一个 JSP? HTTP 协议(pr
嘿,我有一个代码可以拦截所有请求(GET 和 POST),并最终使用表单重定向到另一个页面。我希望当用户发布表单时,执行初始拦截的请求 我的实际代码: public void doFilter(Ser
有没有办法将 request.getRequestDispatcher 与 FQDN 一起使用?类似的东西 request.getRequestDispatcher("http://mysite.co
在我的 servlet 中,我将属性传递给我的 jsp 页面: request.setAttribute("value", value); request.getRequestDispatcher("
好吧,我尝试将信息从 servlet 发送到 jsp,所以我尝试使用 request.setAttribute() 和 respond.getRequestDispatcher("page.jsp")
ServletRequest接口(interface)的getRequestDispatcher()方法返回RequestDispatcher的对象。 我知道 getRequestDispatcher
@WebServlet("/") public class RootServlet extends HttpServlet { private static final long serial
我正在使用 JSP、JSTL 和 Java servlet 制作登录/注册页面,并且在 servlet 的 doPost() 方法中使用: request.setAttribute("message"
使用嵌入式tomcat,这段代码: System.out.println("getServletPath: " + request.getServletPath()); System.out.prin
在我的应用程序中,我使用 jsp:include 作为: 工作正常,但是当我在 servlet 中包含相同的 JSP 时: RequestDispatcher rd = getServletCont
我有 2 个 servlet,它们在 web.xml 内映射: /archiving/archive /archiving/reportgenerator 从 servlet arch
目前我正在准备 Java EE Web Component Developer 考试。 在考试学习指南和 Servlet API Java 文档中我都找到了那个方法 ServletRequest.ge
我有一个名为“插入”的 servlet,可将数据插入数据库。 在这个 servlet 的末尾,我有一个 getRequestDispatcher,它将用户发送到名为“outcome.jsp”的页面。我
在 servlet 中,我们可以使用 requestdispatcher,它将从一个 servlet 转发到同一项目中具有相同 session 的另一个 servlet。但是如果我使用不同的项目,ge
我有一个用例,通过设置一些属性将请求 URL 修剪到相同的上下文来分派(dispatch)请求。这是在同一个线程中还是在新线程中处理? 最佳答案 它将在同一个线程中处理。 Servlet specif
我有一个主 JSP 和进程 JSP。在进程 jsp 中,我正在提交响应并将响应转发到成功页面。 request.getRequestDispatcher("success.jsp").forward
我正在使用 tomcat 7.0.52 根据 API:HttpServletRequest.html#getServletPath() . ServletPath 应该是解码后的路径。然而,当我这样做
我有我的工作代码片段 protected void doPost(HttpServletRequest request, HttpServletResponse response)
req.getRequestDispatcher("jsp/viewArticles.jsp").forward(req, resp); 因此我们获得了请求的调度程序,并提供了路径。到目前为止还好。现
我是一名优秀的程序员,十分优秀!