eclipse进行Json数据交互时,出现的不知名错误

今天我用eclipse创建项目用来测试json交互。在项目完成,进行测试的时候,测试失败;当我查看eclipse控制台时,发现没有报错,只有一个警告
org.springframework.web.servlet.PageNotFound noHandlerFound
警告: No mapping found for HTTP request with URI [/chapter014/testJosn] in DispatcherServlet with name 'springmvc'

img

但是项目确确实实没有运行成功,于是我查看浏览器控制台发现有一个错误
Failed to load resource: the server responded with a status of 404 (),

img

在网上查了很久,发现都是mvc:annotation-driven<mvc:resources location="/js/" mapping="/js/**" />缺少问题或者是缺少Controller、@RequestMapping等注解问题,但是我springmvc-config.xml并没有缺少这些配置,在调试近两天都没有发现问题,只能求助于网上的各位
项目结构

img

web.xml配置文件

img

springmvc-config.xml

img

User类

img

index.jsp

img

Controller类

img

controller里写的是testJson
报错的是testJosn
检查一下页面调后台地方的api拼写
testJosn改成testJson

404说明控制器没有映射出来。