不同jsp页面之间的变量
我有一个哈希表,我可以从应用程序的许多 jsp 页面访问它。我不明白在哪里声明 hashtable.plz help
I have a hashtable which i would be accessing from many jsp pages of my application. I dont understand where to declare hashtable.plz help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其保留在应用程序范围内,这将使其可用于所有 jsp 页面(以及应用程序的其余部分)。
通过在 jsp 页面中包含上述行,它们将共享相同的实例(每个服务器,不同的服务器将具有不同的实例)。如果加载jsp页面时Hashtable不存在,容器将创建它。
You can keep it in application scope which will make it available to all jsp pages (plus the rest of your application).
By including the above line in your jsp pages, they will all share the same instance (per server, different servers will have different instances). If the Hashtable doesn't exist when the jsp page is loaded, the container will create it.
听起来它将是一个应用程序对象:
http://www.gulland.com/courses/ JavaServerPages/jsp_objects3.jsp
Sounds like it would be an application object:
http://www.gulland.com/courses/JavaServerPages/jsp_objects3.jsp