2021
12-11
12-11
如何使用spring ResponseEntity处理http响应
简介使用spring时,达到同一目的通常有很多方法,对处理http响应也是一样。本文我们学习如何通过ResponseEntity设置http相应内容、状态以及头信息。ResponseEntityResponseEntity标识整个http相应:状态码、头部信息以及相应体内容。因此我们可以使用其对http响应实现完整配置。如果需要使用ResponseEntity,必须在请求点返回,通常在springrest中实现。ResponseEntity是通用类型,因此可以使用任意类型作为响应体:@GetMapping("...
继续阅读 >