有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java HTTP状态500 Spring MVC无法添加拦截器

我在Tomcat7服务器上运行此应用程序时遇到异常。当我不在dispatcherservlet上添加这一行时,它运行得非常好

<mvc:interceptors>
    <bean class="com.spring.maria.interceptor.PerformanceMonitorInterceptor" />
</mvc:interceptors>

但是当我加上它的时候。我得到这个错误

enter image description here

我仔细检查拼写错误。没有。我不确定是什么导致了这个问题

调度员服务。xml

    <?xml version="1.0" encoding="UTF-8"?>
  <beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xmlns:context="http://www.springframework.org/schema/context"
   xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:security="http://www.springframework.org/schema/security"
    xsi:schemaLocation="http://www.springframework.org/schema/beans      http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">

<mvc:annotation-driven enable-matrix-variables="true" />
<context:component-scan base-package="com.spring.maria" />
<mvc:resources location="/resources/" mapping="/resources/**" />

<mvc:interceptors>
    <bean class="com.spring.maria.interceptor.PerformanceMonitorInterceptor" />
</mvc:interceptors>

<!-- View Resolver -->
<bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/jsp/" />
    <property name="suffix" value=".jsp" />
</bean>

<bean id="messageSource"
    class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name="basename" value="messages" />
</bean>

<!-- File Uploading -->
<bean id="multipartResolver"
    class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
    <property name="maxUploadSize" value="10240000" />
</bean>

<!-- Java Object Conversion to XML/JSON -->
<bean
    class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
    <property name="defaultViews">
        <list>
            <ref bean="jsonView" />
            <ref bean="xmlView" />
        </list>
    </property>
</bean>

<bean id="jsonView"
    class="org.springframework.web.servlet.view.json.MappingJacksonJsonView">
    <property name="prettyPrint" value="true" />
</bean>

<bean id="xmlView"
    class="org.springframework.web.servlet.view.xml.MarshallingView">
    <constructor-arg>
        <bean class="org.springframework.oxm.jaxb.Jaxb2Marshaller">
            <property name="classesToBeBound">
                <list>
                    <value>
                        com.spring.maria.domain.Product
                    </value>
                </list>
            </property>
        </bean>
    </constructor-arg>
</bean>

根本原因错误

  org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0': Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.handler.MappedInterceptor#1': Could not resolve matching constructor (hint: specify index/type/name arguments for simple parameters to avoid type ambiguities)

enter image description here


共 (1) 个答案

  1. # 1 楼答案

    啊,我忘了包括{extends handler interceptoradapter}。非常感谢。现在可以了