不同jsp页面之间的变量

发布于 2024-10-07 03:07:36 字数 65 浏览 1 评论 0原文

我有一个哈希表,我可以从应用程序的许多 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

揪着可爱 2024-10-14 03:07:36

您可以将其保留在应用程序范围内,这将使其可用于所有 jsp 页面(以及应用程序的其余部分)。

<jsp:useBean id="myHashtable" class="java.util.Hashtable" scope="application" />

通过在 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).

<jsp:useBean id="myHashtable" class="java.util.Hashtable" scope="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.

姜生凉生 2024-10-14 03:07:36

听起来它将是一个应用程序对象:

application.setAttribute( "myApplicationHashTable", myHashTable );

http://www.gulland.com/courses/ JavaServerPages/jsp_objects3.jsp

Sounds like it would be an application object:

application.setAttribute( "myApplicationHashTable", myHashTable );

http://www.gulland.com/courses/JavaServerPages/jsp_objects3.jsp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文