mvc:resources和mvc:annotation不能一起工作

时间:2013-06-03 07:09:00

标签: spring spring-mvc

servlet的spring.xml

<mvc:annotation-driven />
<mvc:resources mapping="/mgis/**" location="/mgis/" />
<context:component-scan base-package="com.app.controller" />

的web.xml:

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

现在,我无法启动我的应用程序。

错误:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping#0': Invocation of init method
 failed; nested exception is org.springframework.http.InvalidMediaTypeException: Invalid media type "charset=utf-8": does not contain '/'

如果我删除<mvc:annotation-driven />,那么我可以启动应用程序,但我只能访问静态资源。所有控制器都不起作用。

如果我同时删除了<mvc:annotation-driven /><mvc:resources mapping="/mgis/**" location="/mgis/" />,那么我的应用程序将会进行设置,然后我无法访问静态资源,但控制器仍然有效。

0 个答案:

没有答案