在Spring Boot中,可以使用`@RequestBody`注解来接收字节流。以下是一个简单的示例:
- 首先,创建一个控制器类,如`ByteController`:
```java
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ByteController {
@PostMapping(value = "/receive-bytes", consumes = "application/octet-stream")
public String receiveBytes(@RequestBody byte[] bytes) {
// 处理字节流
return "接收到的字节长度为:" + bytes.length;
}
}
```
-
在这个示例中,我们使用`@PostMapping`注解来定义一个POST请求的处理方法。`consumes`属性设置为`application/octet-stream`,表示该方法接收的是字节流。
-
`@RequestBody`注解用于将请求体中的字节流绑定到方法参数`byte[] bytes`上。
-
当客户端发送一个包含字节流的POST请求到`/receive-bytes`时,Spring Boot会自动将请求体中的字节流绑定到`bytes`参数上,然后调用`receiveBytes`方法进行处理。