跳到主要内容
版本:7.0.3

HttpEntity

Hunyuan 7b 中英对照 HttpEntity

HttpEntity 与使用 [@RequestBody](requestbody.md) 基本上是相同的,但它基于一个容器对象,该对象可以暴露请求头和请求体。以下示例展示了这种用法:

@PostMapping("/accounts")
public void handle(HttpEntity<Account> entity) {
// ...
}