定制控制器

发布于 2024-08-19 15:01:58 字数 207 浏览 4 评论 0原文

在阅读Struts2文档时,我遇到了下面引用的段落

自定义控制器 - Struts 1 让 自定义请求处理器 模块,Struts 2 允许自定义 每个操作的请求处理,如果 想要的。

作者到底想表达什么意思。 以代码形式演示的简单示例将不胜感激

预先感谢

丹尼尔,

While reading Struts2 documentation, I encountered the passage as quoted below

customizing controller - Struts 1 lets
to customize the request processor per
module, Struts 2 lets to customize the
request handling per action, if
desired.

What do the author exactly mean. Simple examples in code form for the demonstration on both will be appreciated

Thanks in advance

Daniel

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巨坚强 2024-08-26 15:01:58

在 Struts 1 中自定义请求处理器的示例:

<controller processorClass="org.springframework.web.struts.DelegatingRequestProcessor"/>

这将默认的 Struts 请求处理器替换为 Spring 请求处理器,后者将映射的 Struts 操作与 Spring 上下文中的 bean 相匹配以执行依赖项注入。

Struts 1 中委托操作处理的示例:

<action-mappings>
    <action  path="/welcome" forward="/WEB-INF/pages/welcome.htm"/>
    <action  path="/searchEntry" forward="/WEB-INF/pages/search.jsp"/>
    <action  path="/searchSubmit" 
             type="org.springframework.web.struts.DelegatingActionProxy" 
             input="/searchEntry.do"
             validate="true"
             name="searchForm">
        <forward name="success" path="/WEB-INF/pages/detail.jsp"/>
        <forward name="failure" path="/WEB-INF/pages/search.jsp"/>
</action>  

这里操作类型被替换为 Spring 代理类,该代理类在 Spring 上下文中(按路径)查找匹配的 bean。这样做的目的也是为了在 Struts 1 操作中注入依赖项。这只是另一种方法,为 Spring 提供更多控制权。

我不知道 Struts 2 中的事情是如何工作的。

Example of customizing the request processor in Struts 1:

<controller processorClass="org.springframework.web.struts.DelegatingRequestProcessor"/>

This replaces the default Struts request processor with a Spring one, which matches mapped Struts actions with beans in the Spring context to perform dependency injection.

Example of delegating action handling in Struts 1:

<action-mappings>
    <action  path="/welcome" forward="/WEB-INF/pages/welcome.htm"/>
    <action  path="/searchEntry" forward="/WEB-INF/pages/search.jsp"/>
    <action  path="/searchSubmit" 
             type="org.springframework.web.struts.DelegatingActionProxy" 
             input="/searchEntry.do"
             validate="true"
             name="searchForm">
        <forward name="success" path="/WEB-INF/pages/detail.jsp"/>
        <forward name="failure" path="/WEB-INF/pages/search.jsp"/>
</action>  

Here the action type is replaced with a Spring proxy class, which looks up a matching bean (by path) in the Spring context. The purpose of this is also to inject dependencies in Struts 1 actions. It is just another approach, giving more control to Spring.

I don't know how things work in Struts 2.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文