色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

您的位置:首頁技術(shù)文章
文章詳情頁

如何使用spring ResponseEntity處理http響應(yīng)

瀏覽:3日期:2023-06-28 09:29:49
簡介

使用spring時,達到同一目的通常有很多方法,對處理http響應(yīng)也是一樣。本文我們學(xué)習(xí)如何通過ResponseEntity設(shè)置http相應(yīng)內(nèi)容、狀態(tài)以及頭信息。

ResponseEntity

ResponseEntity標(biāo)識整個http相應(yīng):狀態(tài)碼、頭部信息以及相應(yīng)體內(nèi)容。因此我們可以使用其對http響應(yīng)實現(xiàn)完整配置。

如果需要使用ResponseEntity,必須在請求點返回,通常在spring rest中實現(xiàn)。ResponseEntity是通用類型,因此可以使用任意類型作為響應(yīng)體:

@GetMapping('/hello')ResponseEntity<String> hello() { return new ResponseEntity<>('Hello World!', HttpStatus.OK);}

可以通過編程方式指明響應(yīng)狀態(tài),所以根據(jù)不同場景返回不同狀態(tài):

@GetMapping('/age')ResponseEntity<String> age( @RequestParam('yearOfBirth') int yearOfBirth) { if (isInFuture(yearOfBirth)) {return new ResponseEntity<>( 'Year of birth cannot be in the future', HttpStatus.BAD_REQUEST); } return new ResponseEntity<>( 'Your age is ' + calculateAge(yearOfBirth), HttpStatus.OK);}

另外,還可以設(shè)置http響應(yīng)頭:

@GetMapping('/customHeader')ResponseEntity<String> customHeader() { HttpHeaders headers = new HttpHeaders(); headers.add('Custom-Header', 'foo'); return new ResponseEntity<>( 'Custom header set', headers, HttpStatus.OK);}

而且, ResponseEntity提供了兩個內(nèi)嵌的構(gòu)建器接口: HeadersBuilder 和其子接口 BodyBuilder。因此我們能通過ResponseEntity的靜態(tài)方法直接訪問。

最簡單的情況是相應(yīng)包括一個主體及http 200響應(yīng)碼:

@GetMapping('/hello')ResponseEntity<String> hello() { return ResponseEntity.ok('Hello World!');}

大多數(shù)常用的http 響應(yīng)碼,可以通過下面static方法:

BodyBuilder accepted();BodyBuilder badRequest();BodyBuilder created(java.net.URI location);HeadersBuilder<?> noContent();HeadersBuilder<?> notFound();BodyBuilder ok();

另外,可以能使用BodyBuilder status(HttpStatus status)和BodyBuilder status(int status) 方法設(shè)置http狀態(tài)。使用ResponseEntity BodyBuilder.body(T body)設(shè)置http響應(yīng)體:

@GetMapping('/age')ResponseEntity<String> age(@RequestParam('yearOfBirth') int yearOfBirth) { if (isInFuture(yearOfBirth)) {return ResponseEntity.badRequest() .body('Year of birth cannot be in the future'); } return ResponseEntity.status(HttpStatus.OK).body('Your age is ' + calculateAge(yearOfBirth));}

也可以自定義頭信息:

@GetMapping('/customHeader')ResponseEntity<String> customHeader() { return ResponseEntity.ok().header('Custom-Header', 'foo').body('Custom header set');}

因為BodyBuilder.body()返回ResponseEntity 而不是 BodyBuilder,需要最后調(diào)用。注意使用HeaderBuilder 不能設(shè)置任何響應(yīng)體屬性。

盡管ResponseEntity非常強大,但不應(yīng)該過度使用。在一些簡單情況下,還有其他方法能滿足我們的需求,使代碼更整潔。

替代方法@ResponseBody

典型spring mvc應(yīng)用,請求點通常返回html頁面。有時我們僅需要實際數(shù)據(jù),如使用ajax請求。這時我們能通過@ResponseBody注解標(biāo)記請求處理方法,審批人能夠處理方法結(jié)果值作為http響應(yīng)體。

@ResponseStatus

當(dāng)請求點成功返回,spring提供http 200(ok)相應(yīng)。如果請求點拋出異常,spring查找異常處理器,由其返回相應(yīng)的http狀態(tài)碼。對這些方法增加@ResponseStatus注解,spring會返回自定義http狀態(tài)碼。

直接操作相應(yīng)

Spring 也允許我們直接 javax.servlet.http.HttpServletResponse 對象;只需要申明其作為方法參數(shù):

@GetMapping('/manual')void manual(HttpServletResponse response) throws IOException { response.setHeader('Custom-Header', 'foo'); response.setStatus(200); response.getWriter().println('Hello World!');}

但需要說明,既然spring已經(jīng)提供底層實現(xiàn)的抽象和附件功能,我們不建議直接操作response。

總結(jié):本文我們介紹了spring提供多種方式處理http響應(yīng),以及各自的優(yōu)缺點,希望對你有幫助。

ResponseEntity的基本簡介1、ResponseEntity繼承了HttpEntity

可以添加HttpStatus狀態(tài)碼的HttpEntity的擴展類。被用于RestTemplate和Controller層方法

2、ResponseEntity可以定義返回的HttpStatus(狀態(tài)碼)

和HttpHeaders(消息頭:請求頭和響應(yīng)頭)HttpStatus的狀態(tài)碼有以下幾種

如何使用spring ResponseEntity處理http響應(yīng)

3、ResponseEntity的優(yōu)先級高于@ResponseBody

在不是ResponseEntity的情況下才去檢查有沒有@ResponseBody注解。如果響應(yīng)類型是ResponseEntity可以不寫@ResponseBody注解,寫了也沒有關(guān)系。

簡單的說@ResponseBody可以直接返回Json結(jié)果,@ResponseEntity不僅可以返回json結(jié)果,還可以定義返回的HttpHeaders和HttpStatus

public ResponseEntity<List<Category>> queryCategoriesByPid(@RequestParam(value = 'pid',defaultValue = '0') Long pid){if(pid == null || pid.longValue()<0){ // 響應(yīng)400,相當(dāng)于ResponseEntity.status(HttpStatus.BAD_REQUEST).build(); return ResponseEntity.badRequest().build();}//ResponseEntity.status(HttpStatus.NOT_FOUND).body(null); // ResponseEntity.notFound().build();// ResponseEntity.ok(null);List<Category> categoryList = this.categoryService.queryCategoriesByPid(pid);if(CollectionUtils.isEmpty(categoryList)){ // 響應(yīng)404 return ResponseEntity.notFound().build();}return ResponseEntity.ok(categoryList); }

以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Spring
相關(guān)文章:
主站蜘蛛池模板: 亚洲高清在线观看播放 | 91精品国产薄丝高跟在线看 | 亚洲网址在线 | 久久久久久久久久久视频国内精品视频 | 成人网18免费网站 | 在线成人毛片 | 日本色中色| 国产免费福利体检区久久 | 免费一级毛片无毒不卡 | 欧美又粗又硬又大久久久 | 国产日韩在线观看视频 | 天天躁天天碰天天看 | 一级爱爱片一级毛片-一毛 一级爱做片免费观看久久 一级白嫩美女毛片免费 | 日韩一区二区不卡 | 男人的天堂网在线 | 99久久国产综合精品2020 | 久久亚洲精品成人综合 | 国产三级久久 | 91精品成人免费国产 | 永久精品免费影院在线观看网站 | 99国内精品久久久久久久 | 午夜免费的国产片在线观看 | 久久免费99精品久久久久久 | 91免费公开视频 | 欧美成本人视频 | 成人国产精品久久久免费 | 成人一区二区免费中文字幕 | 久久中文字幕免费视频 | 国产精品国产亚洲精品不卡 | 日韩欧美亚洲天堂 | 亚洲国产精品久久久久秋霞不卡 | 香蕉网站狼人久久五月亭亭 | 综合久久久久久 | 亚洲男人的天堂在线 | 黄色作爱视频 | 中文字幕s级优女区 | 国产99久久久久久免费看 | 精品亚洲成a人在线播放 | 波多野结衣中文无毒不卡 | 久久久久久久久久久久久久久久久久 | 国产成人精品一区 |