gpt4 book ai didi

java - 为什么 spring-servlet.xml 上的 Beans 无法访问我的 applicationContext.xml 中的 beans

转载 作者:搜寻专家 更新时间:2023-11-01 01:45:58 24 4
gpt4 key购买 nike

我在这里有一个问题,在“applicationContext.xml”中定义的 beans 如何可用于在比方说“spring-servlet.xml”中定义的 Controller ,因此我可以跳过我遇到的此类错误。

org.springframework.beans.factory.BeanCreationException: Error creating bean with name '/home' defined in ServletContext resource [/WEB-INF/mmapp-servlet.xml]: Cannot resolve reference to bean 'equipementService' while setting bean property 'equipementService'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'equipementService' is defined

applicationContext.xml

<?xml version="1.0" ?>
<!DOCTYPE beans PUBLIC
"-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">

<beans>
<bean name="equipementService"
class="mmapp.service.SimpleEquipementService" />
<bean name="equipement1"
class="mmapp.domain.Equipement" />

</beans>

mmapp-servlet.xml

<?xml version="1.0" ?>
<!DOCTYPE beans PUBLIC
"-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">

<beans>

<bean name="/home" class="mmapp.web.HelloController">
<property name="equipementService" ref="equipementService" />
</bean>
</beans>

最佳答案

基于 Spring 的 Web 应用程序通常具有多个运行时 Spring 应用程序上下文 -

  1. 根应用程序上下文(在 servlet 容器启动期间加载),这是您通常为服务放置 bean 的地方 - 根应用程序上下文是通过使用 ContextLoaderListener 加载的,通常使用这些web.xml 文件中的条目:

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

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:META-INF/spring/applicationContext*.xml</param-value>
</context-param>

  1. 一个或多个 Web 应用程序上下文,被认为是根应用程序上下文的子级,包含与 UI - Controller 等相关的 bean。这是通过使用 Dispatcher Servlet 来配置的,Dispatcher Servlet 是 Spring 提供的一种特殊的 servlet,它知道将调用适本地委托(delegate)给 Spring 容器。根应用程序上下文中的 beans 对此处定义的 bean 可见,但反过来则不然——这种方式在 UI 层和服务层之间提供了一定程度的分离。这是 web.xml 文件中的典型配置条目:

<servlet>
<servlet-name>lovemytasks</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/mmapp-servlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

如果您以这种方式定义了 bean,则 equipementService 应该对您的 Controller 可见。

关于java - 为什么 spring-servlet.xml 上的 Beans 无法访问我的 applicationContext.xml 中的 beans,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10489024/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com