0

在我的项目中他们以这种方式进行映射,我发现类型参数很奇怪,护目镜,阅读了一些 struts spring 插件,任何人都可以给我一点想法为什么它会以这种方式完成,或者这是什么......? ?

<action path="/loginAction"  
          type="org.springframework.web.struts.DelegatingActionProxy"  
          name="loginForm"  
          scope="request"  
          validate="false"  
          input="/showLoginAction.do">
4

2 回答 2

0

这使用了一个 spring struts 插件,这意味着您在另一个 XML 文件中有一个名为 /loginAction 的 bean,它处理 URL。

这使得 struts 动作成为 spring 豆类,并以这种方式轻松使用 spring ioc。

XML 文件在 struts-config.xml 文件或其依赖项之一中的某些位置被引用。

问候

菲利普

于 2012-08-08T13:10:45.013 回答
0

查看文档,它将消除您的所有疑问。http://static.springsource.org/spring/docs/1.1.5/api/org/springframework/web/struts/DelegatingActionProxy.html

于 2012-08-08T13:29:57.873 回答