My Action class have the following methods,
1.add
2.edit
3.loadEdit
4.remove
5.list
6.execute
in this i need to apply validation for add and edit..how do need to config in struts.xml.I followed,
<action name="editComment" method="edit"
class="com.mmm.ehspreg2.web.action.product.CommentAction">
<result name="success">
/jsp/propertyManager/loadList.jsp
</result>
</action>
<action name="removeComment" method="remove"
class="com.mmm.ehspreg2.web.action.product.CommentAction">
<interceptor-ref name="validation">
<param name="excludeMethods">removem>
</interceptor-ref>
<result type="tiles">
listComment
</result>
<result type="tiles" name="input">
listComment
</result>
</action>
when i configure like this, remove action method is not get called.i don't understand the problem. Please assist.