What is the use of "attribute" attribute of action node in struts-config.xml?
From the dtd definition of Struts-Config.xml ht开发者_开发知识库tp://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
.
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.
attribute
attribute ?
Please help me.its same as plain request.setAttribute(obj , obj);
or session.setAttribute(obj,obj)
It is used to display data on the view typically jsp using jstl or other struts specific taglibs
精彩评论