Cannot retrieve definition for form bean null on action错误

 

================代码开始===============
jsp:<html:form action="/admin/exit.do"><input type="image" src="images/quit.gif" width="69" height="17"/>< ml:form>
config页面:
<action path="/admin/exit"
    type="com.jpkc.admin.action.LogoutAction"
 >
    <forward name="login" path="/admin/login.jsp"/>
</action>

java文件:
public class LogoutAction extends Action {

 @Override
 public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 
  HttpSession session = request.getSession(true);
  session.removeAttribute("username");
  return mapping.findForward("login");
 }

}

==================代码结束===============
<input type="image" src="images/quit.gif" width="69" height="17"/>改成:
<html:form action="/admin/exit.do"><input type="submit" value="退出" name="submit" width="69" height="17"/>< ml:form>还不行还是出现 Cannot retrieve definition for form bean null on action /admin/exit.do这个错误。

如果要用到html:form标签则在strtus-config.xml中必须为其创建form-beans
java_jr(275451870) 00:31:09
成功显示,换成<html:link/>就行了,哈哈。。

==========调试成功=============

 

结论:困扰了大半天,在群里也是没人能明白,到网上查了错误才了解到如果jsp页面中要用到<html:form action=""></html:form>标签的 话务必得创建它的form-bean,否则就会提示Cannot retrieve mapping for action这个错误。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值