Parameter “method” not working (Struts 1)

后端 未结 3 1782
情深已故
情深已故 2021-01-25 18:37

I have the following action declared in my struts.xml:

    

        
相关标签:
3条回答
  • 2021-01-25 18:42

    Does your UpdateAccountAction extend DispatchAction? Here's a working example that does what you're trying to do.

    0 讨论(0)
  • 2021-01-25 19:00

    Please first make sure that your action extends DispatchAction. You probably should not override the execute method in that class since that method is responsible for extracting the request parameter and invoking the corresponding method. If you override execute this logic will no longer execute.

    0 讨论(0)
  • 2021-01-25 19:08

    First thing is that in html:form action="/updateAccountInfo.do"> you have mentioned updateAccountInfo.do and want to call the sendMessage. How it is possible?? It is different.

    Other thing is is that your need require the dispatch action rather action class. It seem you require multiple method to call in struts so it is recommended to use dispatchaction class.

    Refer mkyon site for more details about how to use dispatch action and when it is required.

    0 讨论(0)
提交回复
热议问题