javax.servlet.jsp.JspException: Cannot retrieve mapping for action:xxxxxx

12 篇文章 0 订阅
2 篇文章 0 订阅

出现这个错误的原因是一个表单的action没有与之对应的mapping相匹配,注意找找jsp和struts-config看每个细节是否写错

给出一个简单的例子

hello.jsp页面

<%@ page language="java" contentType="text/html;"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%> 
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%> 
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<html:html lang="true">
<head>
	<title>struts</title>
</head>
<body>
	<html:errors/>
	<logic:present name="msg" scope="request">
		<h2>${msg}</h2>
	</logic:present>
	<h2>${msg}</h2>
	<html:form action="/struts-demo/hello.do" method="post">
		请输入信息:<html:text property="info"></html:text>
		<html:submit value="提交"></html:submit>
	</html:form>
</body>
</html:html>

struts-config配置文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
          "http://struts.apache.org/dtds/struts-config_1_3.dtd">
<struts-config>
	<form-beans>
		<form-bean name="helloForm" type="struts.form.HelloForm"/>
	</form-beans>
	<global-exceptions/>
	<global-forwards/>
	<action-mappings>
		<action attribute="helloForm" input="/struts-demo/hello.jsp"
			name="helloForm" path="/struts-demo/hello" scope="request"
			type="struts.action.HelloAction">
		
			<forward name="show" path="/struts-demo/hello.jsp"></forward>
			</action>
	</action-mappings>
	
	<message-resources parameter="struts.resource.ApplicationResource"/>
</struts-config>

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值