请问:javax.servlet.include.path_info什么时候会有值?
来源: 互联网 发布时间:2015-11-09
本文导语: 我用: req.getAttribute("javax.servlet.include.path_info") 为什么获得的总是空的? | 当一个页面是以RequestDispatcher.include方式显示的话,这个属性值才存在。 相关的还有: getRequestURI javax.servlet.include.re...
我用:
req.getAttribute("javax.servlet.include.path_info")
为什么获得的总是空的?
req.getAttribute("javax.servlet.include.path_info")
为什么获得的总是空的?
|
当一个页面是以RequestDispatcher.include方式显示的话,这个属性值才存在。
相关的还有:
getRequestURI javax.servlet.include.request_uri
getContextPath javax.servlet.include.context_path
getServletPath javax.servlet.include.servlet_path
getPathInfo javax.servlet.include.path_info
getQueryString javax.servlet.include.query_string
RequestDispatcher支持servlet的Server Side Include功能。
RequestDispatcher.include - 向现有输出包含一个页面
RequestDispatcher.forward - 用新页面代替现有输出。
相关的还有:
getRequestURI javax.servlet.include.request_uri
getContextPath javax.servlet.include.context_path
getServletPath javax.servlet.include.servlet_path
getPathInfo javax.servlet.include.path_info
getQueryString javax.servlet.include.query_string
RequestDispatcher支持servlet的Server Side Include功能。
RequestDispatcher.include - 向现有输出包含一个页面
RequestDispatcher.forward - 用新页面代替现有输出。