spring中的ResponseEntity理解

Posted 小飞猪咯咯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring中的ResponseEntity理解相关的知识,希望对你有一定的参考价值。

参考:

https://blog.csdn.net/weixin_37869477/article/details/82762976

https://blog.csdn.net/sswqzx/article/details/84938223

ResponseEntity可以定义返回的HttpStatus(状态码)和HttpHeaders(消息头:请求头和响应头)

HttpStatus(状态码)https://blog.csdn.net/csdn1844295154/article/details/78980174

HttpHeaders(消息头:请求头和响应头)https://www.cnblogs.com/honghong87/articles/6941436.html

 

ResponseEntity :标识整个http相应:状态码、头部信息、响应体内容(spring)
@ResponseBody:加在请求处理方法上,能够处理方法结果值作为http响应体(springmvc)
@ResponseStatus:加在方法上、返回自定义http状态码(spring)

以上是关于spring中的ResponseEntity理解的主要内容,如果未能解决你的问题,请参考以下文章

Spring - HttpMessageConversionException 使用 ResponseEntity 和 Map<String,JSONobject>

ResponseEntity,如何获取html中的body

Spring + Angular:如何以角度解析 ResponseEntity?

如何将 Spring WebClient 响应转换为 ResponseEntity?

Spring MVC ResponseEntity Hystrix 回退

Mono<ServerResponse> 与 Mono<ResponseEntity<MyPojo>> 作为 Java Spring Webflux @Reques