アクション
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>