如何配置 Struts 与 Spring 一起工作?

发布于 2024-09-02 00:52:57 字数 1435 浏览 2 评论 0原文

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

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

发布评论

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

评论(4

坏尐絯℡ 2024-09-09 00:52:57

恰恰相反。您可以将 Spring 配置为与 Struts 一起使用,例如 这个

It's the other way round. You configure Spring to work with Struts like this.

趁微风不噪 2024-09-09 00:52:57

Struts2中有一个Spring框架的插件。您只需在 Struts 操作类构造函数中定义适当的类型,插件将从 Spring 的 Web 应用程序上下文中检索适当的 bean。

There is a plugin for Spring framework in Struts2. You just define appropriate types in your Struts action class constructor and plugin will retrieve appropriate bean from Spring's web app context.

暮色兮凉城 2024-09-09 00:52:57
  1. Spring 附带了 Struts 特定的“spring-struts.jar”解决方案,用于在 Spring Ioc 容器中声明的访问 bean。

  2. 在Struts配置文件中注册Spring现成的Struts插件。

  3. 更改您的 Struts 操作类以扩展 Spring 的 ActionSupport 类(Struts Action 类的子类)。
  4. ActionSupport 提供了一个方便的 getWebApplicationContext() 方法,供您访问 Spring Ioc 容器中声明的 bean。

来源

  1. Spring comes with Struts-specific “spring-struts.jar” solution for access beans declared in the Spring Ioc container.

  2. Register a Spring’s ready-make Struts plug-in in the Struts configuration file.

  3. Change your Struts action class to extend the Spring’s ActionSupport class, a subclass of the Struts Action class.
  4. The ActionSupport provide a convenient getWebApplicationContext() method for you to access beans declared in Spring Ioc container.

source

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