Struts2中的变量声明
Struts2中如何声明变量并为该变量赋值?
How to declare a variable and assign value to that variable in Struts2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Struts2中如何声明变量并为该变量赋值?
How to declare a variable and assign value to that variable in Struts2?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
使用 set 标签:用
以下方式读取 var:
另一个例子:
其中 person 是值堆栈中的一个 bean
Use the set tag:
read the var with:
Another example:
where person is a bean in your value stack
您不必在 JSP 中声明变量。在您的 Action 中执行此操作并创建一个 getter,以便您可以从显示操作输出的 JSP 访问它。
You shouldn't have to declare variables in JSPs. Do it in your Action and create a getter so you can access it from the JSP showing the action's output.
在 struts2 中,我们有值堆栈的概念,在请求处理期间,Struts2 框架会将操作推送到值堆栈的顶部,并且其属性(变量)将像在其顶部一样工作。
您只需要为变量提供 getter 和 setter,然后您就可以使用 OGNL 访问 struts2 中的值(输入/输出)。OGNL 是一种与 Struts2 集成的表达式语言,它能够从值堆栈中引用值,并且还可以为您进行数据转换(自定义类型除外)
Well in struts2 we have concept of value stack and during request processing Struts2 framework will push the action on the top of value stack and its properties (Variable) will work as they are on the top of it.
all you need to have getter and setter for your variable and you can than access values both (in/out) in struts2 with OGNL.OGNL is an expression language integrated with Struts2 which is capable of refereeing values from the value stack and also will do the data conversion (except custom type) for you