Struts1空白页面问题

<span style="font-family: Arial, Helvetica, sans-serif; background-color: rgb(255, 255, 255);">1.struts-config.xml文件action没有配置正</span>

例如:

正确的配置

<struts-config>
	<action-mappings>
		<action path="/person" type="action.PersonAction">
			<forward name="success" path="/index.jsp" />
		</action>
	</action-mappings>
</struts-config>
错误的配置
<struts-config>
	<action-mappings>
		<action path="/person" type="action.PersonAction">
			<forward name="success" path="index.jsp" />
		</action>
	</action-mappings>
</struts-config>

额,谁都有手哆嗦的时候····比如这哥们 http://zghbwjl.blog.163.com/blog/static/120336672201010133847839/

2.重写Action中的execute方法错误

执行的是这个execute方法

@Override
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			<span style="color:#ff0000;">HttpServletRequest request, HttpServletResponse response</span>)
			throws Exception {
		return mapping.findForward("success");
	}
而不是这个

@Override
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			<span style="color:#ff0000;">ServletRequest request, ServletResponse response</span>) throws Exception {
		return mapping.findForward("success");
	}

参考:

http://nannan408.iteye.com/blog/696033

http://blog.csdn.net/kaihua_86/article/details/4464365

3.没有找到对应的forward

例如:

@Override
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		return null;
	}
或者  return mapping.findForward("success");

但是在struts-config.xml中没有对应的

<forward name="success" path="/index.jsp" />
In a word,sturts的工作原理是action处理业务,即访问action的时候回去找对应的Action类,然后执行(正确的那个)execute方法,执行完之后返回结果“ActionForward”,在struts-config.xml文件中找到对应的forward,跳转页面。



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值