RestTemplate返回得字符串多了一层引号
返回得字符打印出来是"“success”"
// 原代码
String res = restTemplate.postForObject(tradeflow.getNotifyUrl(), httpEntity, String.class);
// 修改后得代码 使用Object接收
String res = restTemplate.postForObject(tradeflow.getNotifyUrl(), httpEntity, Object.class).toString();