HTTP Status 500 - No result defined for action and result succeed

错误描述:HTTP Status 500 - No result defined for action and result succeed

解决方法:当提交struts2表单时,struts2的动校验的功能会将非法的字段值以上述错误反馈给用户,若已经定义错误页面,则可解决。

根据这种思想,方一:在struts.xml中添加<result name=“input”>/error.jsp</result>
方二:  在struts.xml中添加
         <global-results>
            <result name="succeed">/common/succeed.jsp</result>
        </global-results>
当然,还要写对应的jsp页面。吃饭去了。。


你可能感兴趣的:(struts2)