Request method 'POST' not supported 发送post请求有问题
//给微信公众号发送模板信息,传递一个post请求,微信端也接受数据成功,但是后台会报一个Request method 'POST' not supported
用了wxjava框架和写都可以发送模板成功
但是都会报Request method 'POST' not supported 异常
用的是若依框架,springboot,但是 restTemplate 的get请求没问题,就只有POST报错
@GetMapping("/sendMessage")
public String sendMessage(ModelMap mmap)
{
ResponseEntity<String> apiResponse = restTemplate.postForEntity
(
url,
o,
String.class
);
return "";
}