我是 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 框架有一个全面了解的人,请查看此链接。