还有其他方法可以从 JSP 中的 bean 获取属性吗?
如果我想从 bean 获取属性并将其用于一些 Java 代码。例如,获取访客计数但不输出它,仅用于其他用途。我无法使用,因为它会输出该值。
如何获取属性但不输出?
If I want to get the property from a bean and use it for some Java Code. Such as, get the visitor count but not output it, just for some other use. I cannot use because it'll output the value.
How can get the property but not output it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将属性设置为任何变量,然后就可以处理它。
例如:
即使您无需设置也可以处理它
You can set property to any variable then you can process it.
for example :
even you can process it without setting
此示例检索会话范围的 bean 并使用 id myBean 使其可用。尽管在 jsp 代码中包含 scriptlet 不是一个好习惯,但一种方法是调用 bean 上的任何方法,如下所示。
This example retrieves a session-scoped bean and makes it available using the id myBean. Although it's not a good practice to have scriptlets in your jsp code, but one way is to call any method on the bean as shown below.
<jsp:useBean id ="object instance" class="full qualified path of ur class" scope="according to need"/>
<jsp:getProperty name="same as id" property="name of the property"/>