当前位置: 首页 > 知识库问答 >
问题:

applicationContext找不到Servlet上下文的控制器

郎鸿
2023-03-14

我有一个带有applicationcontext.xml和dispatcher-servlet.xml配置的Spring web应用程序。我已经在applicationcontext.xml中定义了 ,但是当我运行应用程序时,没有找到控制器,除非我还将 添加到dispatcher-servlet.xml。我在两个软件包中使用了相同的基包,所以这不是问题所在。

我感到困惑,因为我以为applicationcontext.xml是dispatcher-servlet.xml的父级。将 放在applicationcontext.xml中还不够吗?

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">


<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
</context-param>

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

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

<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

</web-app>

编辑:我还在dispatcher-servlet.xml中使用了mvc:注释驱动的,它应该是用来获取控制器的(我想?)。

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:sec="http://www.springframework.org/schema/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p" xmlns:c="http://www.springframework.org/schema/c"
xmlns:context="http://www.springframework.org/schema/context" xmlns:oauth="http://www.springframework.org/schema/security/oauth2"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
      http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
      http://www.springframework.org/schema/security/oauth2 http://www.springframework.org/schema/security/spring-security-oauth2.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">

<context:component-scan base-package="bar.foo"/>
<context:property-placeholder location="classpath:my.properties" />
<bean class="bar.foo.ServicesConfig" />

</beans>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p" xmlns:c="http://www.springframework.org/schema/c"
xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
      http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">

<context:component-scan base-package="bar.foo.controller" />
<mvc:annotation-driven/>
<mvc:default-servlet-handler />

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/jsp/" />
    <property name="suffix" value=".jsp" />
    <property name="order" value="2" />
</bean>

<bean id="contentViewResolver" class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
    <property name="mediaTypes">
        <map>
            <entry key="json" value="application/json" />
        </map>
    </property>
    <property name="defaultViews">
        <bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />
    </property>
    <property name="order" value="1" />
</bean>

</beans>

编辑3:好吧,这很有趣。我的服务和dao类位于我从web项目引用的不同项目(JAR)中。我正在使用基于Java的配置,并从ApplicationContext.xml引用它:

<bean class="bar.foo.config.ServicesConfig" />

所以,这意味着在我的web项目(ApplicationContext.xml所在的地方)中只有控制器注释。回顾一下,从我的applicationcontext.xml中删除context:component-scan应该不会有任何影响,因为除了@controller注释之外,没有其他注释(要编辑的修正:有一些@autowired注释)。但是,当我从applicationcontext.xml中删除context:component-scan时,它表示控制器(从dispatcher servlet scan中找到)找不到我的服务类。难道对ServicesConfig的引用还不够吗?这里是用于引用的ServicesConfig类-它有自己的组件扫描服务,服务是与ApplicationContext.xml扫描的包不同的包。

@Configuration
@ComponentScan({ "some.other.package", "another.package" })
@ImportResource({ "classpath:commonBeans.xml" })
@PropertySource({ "classpath:services.properties",
"classpath:misc.properties" })
public class ServicesConfig {
  // Bean definitions //
}

解决方案

<bean class="bar.foo.config.ServicesConfig" />
<context:component-scan base-package="bar.foo.config" />

dispatcher-servlet.xml:

<context:component-scan base-package="bar.foo.controller" />

我将web上下文设置为在Controller包中拾取Controller、Autowired和任何其他注释--我不确定这是否是最佳实践。

共有1个答案

潘意
2023-03-14

您是对的-有两个不同的应用程序上下文,由ContextLoaderListener加载的根应用程序上下文(在ServletContext初始化时)和Web上下文(由DispatcherServlet加载),根应用程序上下文是Web上下文的父上下文。

现在,由于这是两个不同的应用程序上下文,它们的作用不同--如果您在应用程序上下文中为您的服务定义component-scan,那么服务的所有bean都在这里创建。

当您的Dispatcher servlet加载时,它将开始创建Web上下文,在某个时候(由 驱动,它将创建URI到处理程序方法的映射,它将获得应用程序上下文中的bean列表(它将是Web应用程序上下文,而不是根应用程序上下文),并且由于您没有定义component-scan,因此将不会找到与控制器相关的bean,也不会创建映射,这就是您必须在Dispatcher servlet上下文中定义component-scan的原因。

一个好的实践是在根应用程序上下文中排除与控制器相关的bean:

<context:component-scan base-package="package">
    <context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
</context:component-scan>

并且仅与Web应用程序上下文中的控制器相关:

<context:component-scan base-package="package" use-default-filters="false">
    <context:include-filter expression="org.springframework.stereotype.Controller" type="annotation" />
</context:component-scan>
 类似资料:
  • 问题内容: 我有一个带有applicationContext.xml和dispatcher-servlet.xml配置的Spring Web应用程序。我已经在applicationContext.xml中定义了,但是当我运行我的应用程序时,除非同时添加到dispatcher-servlet.xml中,否则找不到控制器。我在两个中都使用了相同的基本软件包,所以这不是问题。 我很困惑,因为我认为 ap

  • 问题内容: 我有以下代码: 我正在尝试在命令行“ $ ant build”上使用ant对其进行编译,但我不断收到以下错误: 有什么建议吗?谢谢! 问题答案: 简短答案:添加此

  • 对于一个项目,我试图实现JSCSSMergeServlet servlet。 在完全按照说明并通过Maven启动Jetty之后 我得到一个错误的说法: 是否有一些其他文件我需要修改,以便使这个启动和运行?

  • 我使用SpringBoot 1.5.9并创建了: 我的简单控制器正在处理“/”并转发到index.html: 根据SpringBoot文档,应该呈现下的静态内容。如果创建文件夹并将我的放在那里,并在pom.xml中包含spring-boot-starter-thymeleaf依赖项,那么一切都很好。但是,我很困惑为什么src/main/resources/static/index.html的基本呈

  • 问题内容: 可能有人给我解释一下什么是获得这种方式的区别的? 性能或上下文本身是否有差异?如果是这样,那是最好的方法?还有其他检索上下文的方法吗? 问题答案: 还有一个。 从技术上讲,性能没有区别,只有会隐式创建HTTP会话对象(如果尚未创建)。因此,如果尚未完成,那么如果尚未创建会话,则通过会话获取servlet上下文可能要花费几纳秒的时间。 返回的上下文也没有区别。这些方法只是为了方便起见,获

  • 我试图找出一种最简单的方法来控制基本Spring Boot RESTful服务的404 Not Found处理程序,例如Spring提供的示例: https://spring.io/guides/gs/rest-service/ 而不是让它返回默认的Json输出: 或者有比抛出并处理NoHandlerFoundException更好的方法吗?