支付宝异步信息(jeecg3.4框架)
@RequestMapping(value = "/alipay", method = RequestMethod.POST)@ResponseBody
public String alinotify(HttpServletRequest request,HttpServletResponse response) throws IOException {
System.out.println("alipay------notify");
。。。。。
return "success"; //请不要修改或删除
结果,支付宝说,回传的字符 多了引号,如何解决?
求助各位大师 try {
PrintWriter pw=response.getWriter();
pw.write("success");
pw.flush();
} catch (IOException e) {
e.printStackTrace();
}
页:
[1]