@ResponseBody:将方法的返回结果直接写入到http的responseBody中,不加该标签可能会跳转页面,在实际工作中花了几个小时才找到这个原因,切记,切记!!!!
@Controller
@RequestMapping
@Resource和@Autowired
@PathVariable
@requestParam
@RequestBody String paramBody 一般用来接收post发送过来的数据,并且不需要关心发送时用的key是什么
@ResponseBody:将方法的返回结果直接写入到http的responseBody中,不加该标签可能会跳转页面,在实际工作中花了几个小时才找到这个原因,切记,切记!!!!
@Controller
@RequestMapping
@Resource和@Autowired
@PathVariable
@requestParam
@RequestBody String paramBody 一般用来接收post发送过来的数据,并且不需要关心发送时用的key是什么