最近在学习的过程中遇到了404页面错误,原来是我忽略了<mvc:annotation-driven />这个标签(因为项目是复制上一个而后改动的),所以就网上查了一下它的作用。
加了这个标签之后,会为我们注册三个bean,分别是RequestMappingHandlerMapping,RequestMappingHandlerAdapter,ExceptionHandler,使得我们的@RequestMapping,@RequestParam,@ExceptionHandler这些注解生效,在之前这些都得手动配置才行。
而我的代码中也是用注解的方式,代码如下:
@RequestMapping("/myAjax.do")
public void doAjax(@RequestParam("name") String name,
@RequestParam("age") int age, HttpServletResponse response) throws IOException {
Map<String,Object> map = new HashMap<String,Object>();
System.out.println("name=" + name);
System.out.println("age=" + age);
map.put("name", name);
map.put("age", age);
JSONObject myJson = JSONObject.fromObject(map);
String jsonStr = myJson.toString();
PrintWriter out = response.getWriter();
out.print(jsonStr);
out.close();
}
所以还是应该把spring中每个配置文件搞清楚。