struts2标签使用
<s:action>标签的用法
struts2的s:param标签主要有两个属性name与value,
若想在value属性中输入直接量,则可以这样写:<s:param name="tableTitle" value="%{'user'}"/>,
也可以这样写:<s:param name="tableTitle">user</s:param>,这个表达式tableTitle变量的值为user字符串,而不是user变量;
若想取user对象的值,则可以这样写<s:param name="tableTitle" value="user"/>,
这些用法主要是在<s:component>标签中嵌套使用s:param的时候要注意
http://simen.iteye.com/blog/219744
http://topic.csdn.net/u/20100308/18/6a113b29-dbe9-4fa3-a19b-57f0e2850a17.html
http://lihua-he.iteye.com/blog/757341 有时间总结,先记下来