spring mvc常见错误

问题一: WARN  org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/card_console-api/apitest] in DispatcherServlet with name 点do请求不能找到映射

解决方法:

1、可能是MVC配置问题。
2、spring3.2需要加入<mvc:annotation-driven></mvc:annotation-driven>,Controller才可以正确处理

 

问题二:WARN  org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/card_console-api/WEB-INF/views/apitest/menu.jsp] in DispatcherServlet with name 'springServlet' 点do请求可以进入,但是处理完跳转不能进行。

解决方法:

将web.xml中的<url-pattern>/*</url-pattern>改为<url-pattern>*.do</url-pattern>

 

问题二:No qualifying bean of type [com.mopon.service.account.impl.AccountServiceImpl] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations

解决方法:

如果配置了component-scan,请注意是否是顺序的问题。web.xml和spring的xml要一起观察

 

你可能感兴趣的:(spring,mvc问题)