使用struts2框架表单无法提交到第二个页面

struts.xml中



/Result.jsp



web.xml中

struts2
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter

<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

Login.jsp中


username:

password:



Result.jsp中

username:${requestScope.username }

password:${requestScope.password }

为什么表单提交之后就是404错误 无法跳转到Result.jsp页面呢???

参考:http://bbs.csdn.net/topics/360107267