Uploaded image for project: 'SAStruts'
  1. SAStruts
  2. SASTRUTS-95

異なるActionFormのresetメソッドを呼ぼうとして失敗する問題を修正しました

XMLWordPrintable

    • Type: Icon: Bug Bug
    • Resolution: Fixed
    • Priority: Icon: Major Major
    • 1.0.4-sp2
    • Affects Version/s: 1.0.4
    • Component/s: SAStruts
    • None

      アクション
      http://example.com/......../test
      を呼び出した場合、呼び出し先のJSPに別のアクション(/..../test2)がある場合、
      Test2Dtoに対し、TestDtoのresetメソッドを呼び出そうとして失敗する。

      public class TestDto {
          public void reset() {
          }
      }
      
      public class Test2Dto {
          public void reset() {
          }
      }
      
      public class TestAction {
          @ActionForm
          public TestDto testForm;
      
          public String index() {
              return "test.jsp";
          }
      }
      
      public class Test2Action {
          @ActionForm
          public Test2Dto testForm;
      
          public String index() {
              return "test2.jsp";
          }
      }
      ------------ test.jsp ----------
      <html:html>
      <body>
        <s:form action="/....../test2">
          ABC
        </s:form>
      </body>
      </html:html>
      

            Assignee:
            higa higa
            Reporter:
            shu shuichi nakagawa
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: