Java中的全局变量可以在Jsp中使用吗
嗨,
我有一个公共或全局变量 res 用于Admin.java 中的 protected void 函数。我可以在同一应用程序内的 index.jsp 页面中的另一个函数登录中使用此变量吗?是否可以?
我尝试在另一个类 SemanticSearch.java 的函数中使用 Admin.res 。 res 的值很容易检索,但如果我需要在 index.jsp 中使用它,则情况并非如此。我尝试使用alert 在index.jsp 中打印,但未打印该值。
请帮忙, 问候, 阿卡纳
Possible Duplicates:
accessing constants in JSP (without scriptlet)
Reference interface constant from EL
Hi,
I have a public or global variable res used in a protected void function in Admin.java. Can I use this variable in another function login in index.jsp page within the same application. Is it possible?
I have tried using Admin.res in the function in one more class SemanticSearch.java. The value of res is easily retrieved but it is not so in the case if I need to use it in index.jsp. I have tried printed in index.jsp using alert but the value is not printed.
Please help,
Regards,
Archana
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是教程如何执行此操作
Here's a tutorial how to do that