有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java获取错误“类型=方法不允许,状态=405”

当我使用邮递员时,我能够得到回复,但不是通过代码

这就是我通过邮递员所做的

RequestMethod.POST
In HEADERS
Content-Type : application/x-www-form-urlencoded
Accept    : */*

In BODY 
c_id : myname
c_secret : mypassword
g_type :  myvalue
c_scope : value2

这就是我发送请求的方式,我得到了以下响应

{
    "access_token": "token_value",
    "token_type": "bearer",
    "expires_in": 6000,
    "scope": "scope_vale",
    "jti": "jti_value"
}

在《邮递员》中,我还禁用了SSL验证

这就是我在SPRING BOOT应用程序中编写代码的方式

@RestController
@RequestMapping(value="/rest/site")
public class CSController {



     final String url="url name";


       @RequestMapping(path = "/token", method = RequestMethod.POST)
        public ResponseEntity<?> getToken() throws JsonProcessingException
        {

          RestTemplate rt = new RestTemplate();


            HttpHeaders headers = new HttpHeaders();
            headers.setAccept(Arrays.asList( MediaType.ALL) );
            headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);


            Map<String, String> bodyParamMap = new HashMap<String, String>();

          bodyParamMap.put("c_id", "myname");
          bodyParamMap.put("c_secret", "mypassword");
          bodyParamMap.put("g_type", "myvalue");
          bodyParamMap.put("c_scope", "value2");

          String reqBodyData = new ObjectMapper().writeValueAsString(bodyParamMap);
          HttpEntity<String> requestEntity = new HttpEntity<>(reqBodyData, headers);

          System.out.println(  " get token from url 2");

          ResponseEntity<String> result =  rt.exchange(url,HttpMethod.POST, requestEntity, String.class);



            return ResponseEntity.ok(result);
        }


}

但是我得到了下面的错误

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Jun 18 10:49:58 IST 2019
There was an unexpected error (type=Method Not Allowed, status=405).
Request method 'GET' not supported

我如何解决这个问题


共 (1) 个答案

  1. # 1 楼答案

    您的控制器方法支持POST请求而不是GET,因此在向浏览器发送请求时将导致method Not allowed

     @RequestMapping(path = "/token", method = RequestMethod.POST) // POST
                public ResponseEntity<?> getToken() throws JsonProcessingException
                {
    
                  RestTemplate rt = new RestTemplate();
    

    How to resolve

    从方法中删除显式POST,它将同时适用于GET和POST请求

    @RequestMapping(path = "/token") // Remove explicit mapping here
                    public ResponseEntity<?> getToken() throws JsonProcessingException
                    {