1. 程式人生 > >spring boot返回Josn的兩種方式

spring boot返回Josn的兩種方式

pre ges 取數據 獲取數據 路徑 spring wid tco resp

[email protected]

[email protected],[email protected]

技術分享

技術分享

@[email protected]
@Responsebody表示該方法的返回結果直接寫入HTTP response body中
一般在異步獲取數據時使用,[email protected],返回值通常解析為跳轉路徑,
[email protected],而是直接寫入HTTP response body中。
比如異步獲取json數據,[email protected]
,會直接返回json數據。 @RequestBody將HTTP請求正文插入方法中,使用適合的HttpMessageConverter將請求體寫入某個對象

spring boot返回Josn的兩種方式