0

我正在使用Spring引導和http來https通過AWS中的彈性beanstalk進行重定向。
所以我請求http然後通過https協議重定向HTTPS,並重新請求......在HTTPS
,一切正常,
但在HTTP中,get方法(在控制器)是好的,但方法後不確定...
{ "timestamp": 1508137623531, "status": 405, "error": "Method Not Allowed", "exception": "org.springframework.web.HttpRequestMethodNotSupportedException", "message": "Request method 'GET' not supported", "path": "/api/test" }(彈簧啓動)http到https重定向,405方法不允許消息

我的控制器代碼
@PostMapping(value = "/test") public String test(@RequestBody String name) { return "hello, " + name; }

我試過this answer,但它並不能幫助我...

如何解決它...?

回答