容器将如何启动ApplicationContext.xml文件

发布于 2024-11-25 08:59:20 字数 309 浏览 0 评论 0原文

我已经有一个用 Struts 实现的应用程序。我正在尝试将其转移到 Spring,所以我正在一步一步地做所有事情。第一个计划是实施IOC(DI)。现在我的 DAO 已修复,我的 applicationContext.xml 现在已修复,当我尝试运行应用程序时(当然)它不会通过 applicationContext.xml(有时称为 beans.xml)自动为我创建 bean。根据我的理解,我需要在我的服务类调用 DAO 的方法之前初始化我的 applicationContext.xml。 Spring IOC 的正确流程是什么,或者容器如何启动 ApplicationContext.xml 文件。

I already have an application implemented in Struts. I am trying to move it to Spring so I am doing everything step by step. First plan is to implement IOC (DI). now I got my DAOs fixed, i got my applicationContext.xml fixed now when I try to run the application (ofcourse) it does not create beans for me through applicationContext.xml(sometimes known as beans.xml) automatically. In my understanding i need to get my applicationContext.xml initialized before my service classes call method of my DAOs. what is proper flow of Spring's IOC or how will container start ApplicationContext.xml file.

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

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

发布评论

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

评论(1

七七 2024-12-02 08:59:20

您是否将所需的标签添加到 web.xml 中?

<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>WEB-INF/applicationContext.xml</param-value>
</context-param>

<listener>
 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

Did you add the needed tags to the web.xml?

<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>WEB-INF/applicationContext.xml</param-value>
</context-param>

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