关于SpringMVC的RequestMapping注解

在Spring MVC的实现中,关于控制器中的标记了@RequestMapping 的方法是怎么进行执行的,在HandlerMapping 中储存的map 对象中的key 和value 又是什么呢

http://blog.csdn.net/abc19900828/article/details/39989137

@ResponseBody
作用:
该注解用于将Controller的方法返回的对象,通过适当的HttpMessageConverter转换为指定格式后,写入到Response对象的body数据区,即:直接写入HTTP response body中,和response.getWriter().print(xxx)效果类似。
使用时机:
返回的数据不是html标签的页面,而是其他某种格式的数据时(如json、xml等)使用;