“属性”有什么用? struts-config.xml中action节点的属性?
来自Struts-Config.xml的dtd定义 http://struts.apache.org/1.x/struts -core/dtddoc/index.html
action
元素描述一个 ActionMapping 对象
,该对象用于处理特定模块的请求 -相对 URI
。
定义了以下属性: 用于访问 ActionForm bean 的 request-scope
或 session-scope
属性的 attribute
名称(如果它不是 bean 指定的) 名称
。 如果指定了 name
,则可选,否则无效。
我对 scope
属性和 attribute
属性感到困惑。
我可以在哪里使用attribute
属性?
请帮助我。
From the dtd definition of Struts-Config.xml
http://struts.apache.org/1.x/struts-core/dtddoc/index.html
The action
element describes an ActionMapping object
that is to be used to process a request for a specific module-relative URI
.
The following attributes are defined :attribute
name of the request-scope
or session-scope
attribute that is used to access our ActionForm bean, if it is other than the bean's specified name
.
Optional if name
is specified, else not valid.
I am confuse between the scope
attribute and attribute
attribute.
Where i can use attribute
attribute ?
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与普通
request.setAttribute(obj , obj);
或session.setAttribute(obj,obj)
相同它用于在视图上显示数据,通常使用 jstl 或 jsp其他 struts 特定标签库
its same as plain
request.setAttribute(obj , obj);
orsession.setAttribute(obj,obj)
It is used to display data on the view typically jsp using jstl or other struts specific taglibs