欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

No mapping found for HTTP request with URI [/Springmvc/test] in DispatcherServlet with dispatche

程序员文章站 2022-07-15 13:25:05
...

第一种 
在springmvc-config.xml即spring配置文件中 
加上这样一句话`

<context:component-scan base-package="com.test.controllers" /> 
  • 1

这里包名等需要注意是否写对。 
我的情况是第二种,我的spring配置文件在src目录下,但是我的springmvc配置文件丢在了web-inf下,虽然没有报错,但是还是不能注入我的controller,.将两个配置文件放在一起