我正在攻读Spring Core认证,我对Spring MVC中的RESTful webapp *练习有一些疑问。
因此,在示例中,我有以下创建新帐户对象的方法
/**
* 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 HttpRequest处理到 / accounts 资源。我知道它使用 POST 请求,因为根据REST样式POST&#34;动词&#34;意味着必须创建新资源。
我认为这个注释:
@ResponseStatus(HttpStatus.CREATED)
表示当方法正确结束时(当 HttpResponse 发送到客户端时),它将 201 ( CREATED )放入HttpResponse状态字段。所以它指定新对象的创建就没了问题。是真的还是我错过了什么?
该方法的第一个参数是:
@RequestBody Account newAccount
在我看来,这个参数与web请求的主体有关。请求的主体通过HttpMessageConverter传递,以根据请求的内容类型解析方法参数。
那究竟是什么意思呢?我认为这意味着在我的HttpRequest的 body 中,我使用JSON格式的Account对象,并使用Jackson将其转换为经典的帐户 Java对象。是对的还是我错过了什么?
该方法的第二个参数是:
@Value(&#34;#{request.requestURL}&#34;)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);
}
答案 0 :(得分:3)
以下是我对你问题的理解。
- 醇>
@RequestBody Account newAccount
关于这一点,你的理解是正确的。
- @Value(&#34;#{request.requestURL}&#34;)StringBuffer url
醇>
它等同于request.getRequestURL();见API
- entityWithLocation(url,account.getEntityId())
醇>
根据此方法中的代码。
它返回HttpEntity
对象,表示http请求或响应实体(which includes headers and body
),在您的情况下为response
。
在方法内,您添加了location
创建的resource(account)
。