ssh常见错误一(result 'null' not found)小结

时间:2021-09-30 17:05:44

问题描述:

如图所示:

ssh常见错误一(result 'null' not found)小结

当我在第2页编辑学号为11的学生后,修改学生的信息,然后保存。处理过程如下:

ssh常见错误一(result 'null' not found)小结

按修改后希望跳转回第2页。

ssh常见错误一(result 'null' not found)小结

以上便是我需要达到的效果:

在实现过程中出现了一些错误,404 - result 'null' not found,

根据在网上所查的资料,发现时struts.xml配置文件里面有错误。

<action name="student" class="com.xxx.action.StudentAction">
<!-- 显示学生信息-->
<result name="show">/show.jsp</result>
<!--准备修改学生信息-->
<result name="edit">/update.jsp</result>
<!-- 修改学生信息-->
<result name="update" type="redirectAction">
<param name="actionName">student!show.action</param>
<param name="currentPage">${currentPage}</param>
</result>
<result name="error">/error.jsp</result>
</action>
上面的是修改正确的文件。

type="redirectAction是配置的关键信息 ,若没有它变会出现404 - result 'null' not found错误

下面是去掉type="redirectAction的显示结果。 ssh常见错误一(result 'null' not found)小结


具体内容,请下载

http://download.csdn.net/detail/xxx823952375/7065709