> 文档中心 > 接收一串加密过后的字符串

接收一串加密过后的字符串

 @RequestMapping({"getCallbackValue"})@ResponseBodypublic String getCallbackValue(@RequestBody String result) throws Exception {    System.out.println("进入回调函数");    System.out.println(result);   return “”;}  

在参数前面加上@RequestBody 就可以获取到传递进来的加密过后的字符串