request.getRequestDispatcher() 和 context.getRequestDispatcher()
使用 request.getRequestDispatcher() 和 context.getRequestDispatcher() 的主要区别是什么?
What is the main difference in using request.getRequestDispatcher() and context.getRequestDispatcher()?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 request.getRequestDispatcher(path) 中为了创建它,我们需要给出资源的相对路径。但是在resourcecontext.getRequestDispatcher(path)中为了创建它,我们需要给出资源的绝对路径。
In request.getRequestDispatcher(path) in order to create it we need to give the relative path of the resource. But in resourcecontext.getRequestDispatcher(path) in order to create it we need to give the absolute path of the resource.