Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的自定义标签库中,我使用了 pageContext:它是否在不同 HttpSession 的请求之间共享?它是否在同一个 HttpSession 的请求之间共享?它是为访问该页面的每个请求创建的吗?
不在实例PageContext之间共享。HttpRequest它的范围比请求的范围更窄,并且绑定到单个 JSP 页面执行。请求中可能有很少的页面上下文(通过包含或转发),它包含请求和会话(以及其他)对象的句柄
PageContext
HttpRequest