这个在 Spring 中处理 POST 请求的 REST 方法究竟是如何工作的?

Posted

技术标签:

【中文标题】这个在 Spring 中处理 POST 请求的 REST 方法究竟是如何工作的?【英文标题】:How exactly works this REST method that handle a POST request in Spring? 【发布时间】:2015-04-23 09:09:28 【问题描述】:

我正在学习 Spring Core 认证,我对 Spring MVC 中的 **RESTful webapp* 练习有一些疑问。

因此,在示例中,我有以下创建新 Account 对象的方法

/**
 * Creates a new Account, setting its URL as the Location header on the
 * response.
 */
@RequestMapping(value = "/accounts", method = RequestMethod.POST)
@ResponseStatus(HttpStatus.CREATED)
public HttpEntity<String> createAccount(@RequestBody Account newAccount,
        @Value("#request.requestURL") StringBuffer url) 
    Account account = accountManager.save(newAccount);

    return entityWithLocation(url, account.getEntityId());

我知道:

    @RequestMapping 注释,在这种情况下,指定此方法处理 POST/accounts 资源的 HttpRequest。我知道它使用 POST 请求,因为根据 REST 样式,POST“动词”意味着必须创建一个新资源。

    我认为这个注释:

     @ResponseStatus(HttpStatus.CREATED)
    

    表示当方法正确结束时(当 HttpResponse 发送到客户端时)它会将 201 (CREATED) 放入HttpResponse 状态字段。因此它指定新对象的创建已经正常。这是真的还是我错过了什么?

    方法的第一个参数是:

    @RequestBody Account newAccount
    

    阅读文档在我看来,此参数绑定到 Web 请求的正文。请求的正文通过 HttpMessageConverter 传递,以根据请求的内容类型解析方法参数。

    那么,究竟是什么意思?我认为这意味着在我的 HttpRequest 的 body 中,我有 JSON 格式的 Account 对象,并且使用 Jackson 将其转换为经典的 Account Java 对象。是对的还是我错过了什么?

    方法的第二个参数是:

    @Value("#request.requestURL") StringBuffer url

    具体是什么意思?

    然后方法将获取到的对象保存到数据库中。

    终于回来了:

    return entityWithLocation(url, account.getEntityId());
    

    但究竟是什么意思?什么是回归?在哪里?结果是不是进了HttpResponse?

编辑 1:

entityWithLocation() 方法定义在与前一个方法相同的类中,这是它的代码:

private HttpEntity<String> entityWithLocation(StringBuffer url,
        Object resourceId) 
    // Configure and return an HttpEntity object - it will be used to build
    // the HttpServletResponse
    HttpHeaders headers = new HttpHeaders();
    headers.setLocation(getLocationForChildResource(url, resourceId));
    return new HttpEntity<String>(headers);

【问题讨论】:

entityWithLocation 方法定义在哪里?你能发布它的实现吗? @TyrionLannister 编辑了我的原始帖子,添加了所需的信息 【参考方案1】:

以下是我对您问题的理解。

    @RequestBody 帐户新帐户

关于这一点,你的理解是正确的。

    @Value("#request.requestURL") StringBuffer url

相当于request.getRequestURL();见API

    entityWithLocation(url, account.getEntityId())

根据此方法中的代码。 它返回 HttpEntity 对象,代表 http 请求或响应实体(which includes headers and body),在您的情况下是 response。 在方法内部,您添加了 resource(account) 创建的 location

【讨论】:

以上是关于这个在 Spring 中处理 POST 请求的 REST 方法究竟是如何工作的?的主要内容,如果未能解决你的问题,请参考以下文章

spring boot拦截器中获取request post请求中的参数

spring boot get和post请求,以及requestbody为json串时候的处理

405 - 请求方法“POST”不支持 Spring MVC + Spring Security

Spring,不支持请求方法“POST”[关闭]

Spring Boot 2从入门到入坟 | 请求参数处理篇:常用参数注解之@RequestBody

Spring Boot 2从入门到入坟 | 请求参数处理篇:常用参数注解之@RequestBody