You will need to add the Action mapping in your struts-config.xml file.
You
will also need the form-bean mapping that your form will use to pass the
form data to the action class.
Here is an example.
<form-beans>
<!-- Loin form bean -->
<form-bean name="loginForm"
type="com.dextera.examples.forms.LoginForm"/>
</form-beans>
<action-mappings>
<!-- Process a user login -->
<action path="/login"
type="com.dextera.examples.actions.LoginAction"
name="loginForm"
scope="request"
input="/login.jsp">
<forward name="success" path="/home.jsp"/>
</action-mappings>
All in all you will need the following:
1. A form bean to carry the data
2. Action servlet to perform your action
3. Form bean declaration in struts-config
4. Action mapping in struts-config
if you modify the struts-config.xml,restart tomcat5
Good luck.
分享到:
相关推荐
1 异常 javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login (/Login是你的action名字) 可能原因:action没有再struts-config.xml 中定义,或没有找到匹配的action,例如在JSP文件中使用 ...
当你看到"Cannot retrieve mapping for action /Login"这样的异常时,通常表示Struts无法在`struts-config.xml`配置文件中找到对应的action定义。这可能是由于以下几个原因: - 在`struts-config.xml`中没有定义名...
当遇到“Cannot retrieve mapping for action /Login”这样的异常时,通常是因为在`struts-config.xml`配置文件中没有正确地定义Action或者找不到与之匹配的Action。确保你的JSP页面中提交的表单URL(如`...
首先,我们来看第一个异常:“javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login”。这个异常通常意味着在Struts配置文件(struts-config.xml)中没有正确定义或找不到对应的Action。在JSP...
1. **Cannot retrieve mapping for action 异常** 当尝试访问一个未在`struts-config.xml`中定义的Action时,会出现此异常。这可能是因为你在JSP文件中指定了一个不存在的Action,如`<html:form action="Login.do">...
#### 一、异常 javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login **异常描述**: 该异常通常出现在尝试访问一个未在`struts-config.xml`文件中正确配置的Action时。具体表现为无法获取...
1. 异常`javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login` 这个错误表明在`struts-config.xml`中没有为`/Login`动作定义映射,或者找不到匹配的动作。检查`struts-config.xml`的`...
1. 异常 javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login 这个错误表明在struts-config.xml中没有为/L Login定义Action Mapping。确保在配置文件中正确地声明了Action,如: ```xml ...
例如,在struts-config.xml文件中没有配置companyNews的action,引发javax.servlet.ServletException: Cannot retrieve mapping for action /companyNews。 解决方法:在struts-config.xml文件中添加companyNews的...
1. Cannot retrieve mapping for action/submitUpdateStuffTimeRecordAction 这是Struts框架中一个常见的错误,错误信息表明无法找到相应的Action mapping。解决方法是检查Struts配置文件中的action mappings,确保...
7. “Cannot retrieve mapping for action XXX” 这个错误通常发生在 .jsp 的标签里指定 action='/XXX' ,但这个 Action 并未在 struts-config.xml 里设置过。解决方法是检查 struts-config.xml 文件,确保 Action ...
javax.servlet.jsp.JspException: Cannot retrieve mapping for action /Login/LoginAction 这种异常通常发生在使用Struts框架时,当JSP页面尝试访问一个未在`struts-config.xml`中定义的Action时会抛出此异常。...
“Cannot retrieve mapping for action XXX” - **异常描述**:试图访问一个在 Struts 配置文件 `struts-config.xml` 中未定义的 Action。 - **解决方案**: - 确认 `.jsp` 文件中的 `<%-- tag --%>` 指向的 ...
Cannot retrieve mapping for action XXX.jsp **错误描述**:当Struts无法根据指定的action路径找到对应的映射时,会抛出此异常。通常是因为在`struts-config.xml`中未正确配置Action映射。 **解决方法**: - ...
Cannot retrieve mapping for action XXX **问题描述:** 当请求一个特定的 Action 时,如果在 `struts-config.xml` 文件中找不到相应的映射配置,则会抛出此异常。 **解决方法:** - 检查 `struts-config.xml` ...
#### 三、Cannot retrieve mapping for action XXX 此异常表明 Struts 无法为指定的动作名找到相应的映射。这可能是由于 `struts-config.xml` 中没有正确配置动作映射,或者是 Web 应用配置文件 `web.xml` 中的配置...
(b) placing SQL keywords, such as select, under the column names they want to retrieve (c) typing a syntactically correct SQL query that uses column and table names similar to the correct column and...
The IIS script mapping script is a command-line script that is used to configure script maps for IIS 6 and for IIS 7 in Classic mode. The script-mapping script is not needed if you use the Visual ...