6

我是 Struts 框架的菜鸟。我试图了解动作映射是如何工作的。假设我有一个发送 AJAX 请求的 JavaScript 文件:

$("button").click(function(){
    $.ajax({url: "myTestUrl.do", success: function(result){
        //do something with result
    });
});

我的struts-config.xml文件如下所示:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
<struts-config>
    <form-beans>
        <form-bean name="testForm" type="com.test.TestForm"/>       
    </form-beans>
    
    <!-- Global Forwards -->    
    <global-forwards>
    </global-forwards>
    
    <!-- Action Mappings -->
    <action-mappings>

        <action path="/myTestUrl" 
                type="com.test.TestAction" 
                name="testForm" 
                scope="request" />

    </action-mappings>
    <controller locale="true"/>
</struts-config>

我不明白 和 之间的action关系form-bean。我的请求会被处理TestAction吗?如果是这样,表单 beantype属性的用途是什么?

更新

对于需要对 struts MCV 框架有一个全面了解的人,请查看链接。

4

1 回答 1

5

该关系由name操作配置中的属性建立。因此,如果您使用name="testForm"带有名称的表单 bean,则该名称testForm将被注入到操作的执行方法中。

如果相对 url 与操作配置中的路径值匹配并且您已将操作 servlet 映射到*.doservlet 映射模式,则您的请求可能会被处理。

type属性<form-bean>用于输入可能扩展ActionForm. Struts 需要它能够在需要时实例化 bean。

于 2016-04-06T18:59:42.997 回答