今天我用eclipse创建项目用来测试json交互。在项目完成,进行测试的时候,测试失败;当我查看eclipse控制台时,发现没有报错,只有一个警告
org.springframework.web.servlet.PageNotFound noHandlerFound
警告: No mapping found for HTTP request with URI [/chapter014/testJosn] in DispatcherServlet with name 'springmvc'
但是项目确确实实没有运行成功,于是我查看浏览器控制台发现有一个错误
Failed to load resource: the server responded with a status of 404 (),
在网上查了很久,发现都是mvc:annotation-driven<mvc:resources location="/js/" mapping="/js/**" />缺少问题或者是缺少Controller、@RequestMapping等注解问题,但是我springmvc-config.xml并没有缺少这些配置,在调试近两天都没有发现问题,只能求助于网上的各位
项目结构
web.xml配置文件
springmvc-config.xml
User类
index.jsp
Controller类