如何在struts1中像会话一样存储在应用程序级别可共享的值?

发布于 2024-09-29 15:47:08 字数 65 浏览 3 评论 0原文

我必须在应用程序级别存储一个 String 对象,并且必须在 JSP 页面中访问它。如何做到这一点?请给我一些样本。

I have to store the one String object at the application level and have to access it in the JSP page. How to do this?Please give me some sample.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小耗子 2024-10-06 15:47:08

ServletContext.setAttribute(key, value) 可用于在应用程序级别将对象存储在特定键下。

要从 JSP 访问它,这实际上取决于您访问它的方式。最简单的方法是通过 EL 完成此操作,因此如果您的密钥是 mykey,则表达式 ${mykey} 应返回您存储的字符串。

其他示例: http://www.coderanch.com/t/ 293528/JSP/java/servletcontext-attribute-jsp

The ServletContext.setAttribute(key, value) can be used to store an object under a particular key, at the application level.

To access it from JSP, it really depends how you're accessing it. The easiest way is to do it via EL, so if your key was mykey, the expression ${mykey} should return the String that you stored.

Additional example: http://www.coderanch.com/t/293528/JSP/java/servletcontext-attribute-jsp

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