SpringMvc 请求无法到达controller,出现404错误的原因

最近做ssm项目集成的时候遇到一个问题,项目搭起来以后,http请求怎么都进不到controller中,耗费了半天弄这个问题,最后发现还是自己对spring的配置文件和各种注解不熟,其实这个问题就是因为注解没配好。

1、首先是web.xml中配置:

	
	
		contextConfigLocation
		classpath:applicationContext.xml
	

	
		org.springframework.web.context.ContextLoaderListener
	
	
	
	
		springDispatcherServlet
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:applicationContext-controller.xml
		
		1
	
	
		springDispatcherServlet
		/
	

基于ContextLoaderListener加载的XML配置,原则上是与spring容器相关的(也可以说是父容器);而基于DispatcherServlet加载的XML配置,原则上是与springmvc容器相关的(相当于子容器);配置文件分别为applicationContext.xml、applicationContext-controller.xml。总之,基于mvc相关的spring配置由DispatcherServlet加载,而其余的JavaBean都交给ContextLoaderListener加载。

2、在applicationContext.xml中,配置了如下扫描,其中包括了org.fkit.hrm.controller路径。

我在controller的构造方法中添加了调试语句,服务器启动时发现确实被注入容器中,但是却无法响应对应的浏览器请求。

3、解决办法:在applicationContext-controller.xml中配置了如下扫描:

也就是说,对于controller,需要在mvc配置文件中进行扫描注入。

你可能感兴趣的:(Java,Web编程)