引用:http://hi.baidu.com/chenying99/blog/item/3bf7645455f6ef52574e00a4.html/cmtid/22ff23f49cfc9665dcc4747d
我觉得attribute还是有用的。
1)应用前提,attribute只有在设置了name后才有意义。
2)attribute可以实现对象的重用,即如果设置了attribute属性,在创建actionform是,会先去查找相应的scope中是否有此对象,如果有,则重用,否则创建新的对象。
3)当你将创建的acitonForm保存到相应的scope中时,你想用一个更有意义的名字来访问它时,它就有意义了。例如:
配置form.
<form-bean name="employee" type="Employee"/>
配置action:
<action
attribute="validEmployee"
name="employee"
type="EmployeeAction"
scope="request"
path="/employee">
.....
这样就可以用validEmployee在JSP页面中访问了,而不是用employee.
这在同一个form 在不同情况下有不同的意义时,意义才很明显。