servlet-spring.xml
<mvc:annotation-driven />
<mvc:resources mapping="/mgis/**" location="/mgis/" />
<context:component-scan base-package="com.app.controller" />
网页.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/" />
,那么我的应用程序将启动,然后我无法访问静态资源,但控制器工作。