如何在struts1中像会话一样存储在应用程序级别可共享的值?
我必须在应用程序级别存储一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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