struts2中ActionContext和ValueStack有什么区别
我无法理解参数如何进入 ValueStack 。 参数如何传递。
值栈和ActionContext有什么用?
我有一个带有 getter & 的变量名我的 Action 类中的设置器,其中将存储值。
I am unable to understand how parameters go into ValueStack .
How the parameters are passed.
what is the use of value stack and ActionContext?
I am having a variable name with getter & setter in my Action class,where will be the values be stored.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ActionContext 是执行 Action 的上下文。每个上下文基本上都是执行操作所需的对象的容器,例如会话、参数、区域设置等。
ValueStack - 包含请求的所有应用程序域特定数据
The ActionContext is the context in which an Action is executed. Each context is basically a container of objects an action needs for execution like the session, parameters, locale, etc.
ValueStack - Contains all the application-domain–specific data for the request