動(dòng)力節(jié)點(diǎn)SpringBoot3第六章_第1頁(yè)
動(dòng)力節(jié)點(diǎn)SpringBoot3第六章_第2頁(yè)
動(dòng)力節(jié)點(diǎn)SpringBoot3第六章_第3頁(yè)
動(dòng)力節(jié)點(diǎn)SpringBoot3第六章_第4頁(yè)
動(dòng)力節(jié)點(diǎn)SpringBoot3第六章_第5頁(yè)
已閱讀5頁(yè),還剩4頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

動(dòng)力節(jié)點(diǎn)SpringBoot3第六章.docx 免費(fèi)下載

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

動(dòng)力節(jié)點(diǎn)SpringBoot3第六章6

遠(yuǎn)程訪問(wèn)@HttpExchange[SpringBoot3]遠(yuǎn)程訪問(wèn)是開(kāi)發(fā)的常用技術(shù),一個(gè)應(yīng)用能夠訪問(wèn)其他應(yīng)用的功能。SpringBoot提供了多種遠(yuǎn)程訪問(wèn)的技術(shù)?;贖TTP協(xié)議的遠(yuǎn)程訪問(wèn)是支付最廣泛的。SpringBoot3提供了新的HTTP的訪問(wèn)能力,通過(guò)接口簡(jiǎn)化HTTP遠(yuǎn)程訪問(wèn),類似Feign功能。Spring包裝了底層HTTP客戶的訪問(wèn)細(xì)節(jié)。SpringBoot中定義接口提供HTTP服務(wù)。生成的代理對(duì)象實(shí)現(xiàn)此接口,代理對(duì)象實(shí)現(xiàn)HTTP的遠(yuǎn)程訪問(wèn)。需要理解:@HttpExchangeWebClientWebClient特性:我們想要調(diào)用其他系統(tǒng)提供的HTTP服務(wù),通??梢允褂肧pring提供的RestTemplate來(lái)訪問(wèn),RestTemplate是Spring3中引入的同步阻塞式HTTP客戶端,因此存在一定性能瓶頸。Spring官方在Spring5中引入了WebClient作為非阻塞式HTTP客戶端。非阻塞,異步請(qǐng)求它的響應(yīng)式編程的基于Reactor高并發(fā),硬件資源少。支持Java8lambdas函數(shù)式編程什么是異步非阻塞理解:異步和同步,非阻塞和阻塞上面都是針對(duì)對(duì)象不一樣異步和同步針對(duì)調(diào)度者,調(diào)用者發(fā)送請(qǐng)求,如果等待對(duì)方回應(yīng)之后才去做其他事情,就是同步,如果發(fā)送請(qǐng)求之后不等著對(duì)方回應(yīng)就去做其他事情就是異步阻塞和非阻塞針對(duì)被調(diào)度者,被調(diào)度者收到請(qǐng)求后,做完請(qǐng)求任務(wù)之后才給出反饋就是阻塞,收到請(qǐng)求之后馬上給出反饋然后去做事情,就是非阻塞6.1

準(zhǔn)備工作:1.安裝GsonFormat插件,方便json和Bean的轉(zhuǎn)換2.介紹一個(gè)免費(fèi)的、24h在線的RestHttp服務(wù),每月提供近20億的請(qǐng)求,關(guān)鍵還是免費(fèi)的、可公開(kāi)訪問(wèn)的。/6.1.1

聲明式HTTP遠(yuǎn)程服務(wù)需求:訪問(wèn)/

提供的todos服務(wù)?;赗ESTful風(fēng)格,添加新的todo,修改todo,修改todo中的title,查詢某個(gè)todo。聲明接口提供對(duì)象/todos服務(wù)的訪問(wèn)創(chuàng)建新的SpringBoot項(xiàng)目Lession18-HttpService,Maven構(gòu)建工具,JDK19。SpringWeb,SpringReactiveWeb,Lombok依賴。包名稱:com.bjpowernode.httpstep1:Maven依賴pom.xml|org.springframework.bootspring-boot-starter-weborg.springframework.bootspring-boot-starter-webfluxstep2:聲明Todo數(shù)據(jù)類|/**根據(jù)/todos/1的結(jié)構(gòu)創(chuàng)建的*/publicclassTodo{privateintuserId;privateintid;privateStringtitle;privatebooleancompleted;//省略set,get方法publicbooleangetCompleted(){returncompleted;}publicvoidsetCompleted(booleancompleted){pleted=completed;}@OverridepublicStringtoString(){return"Todo{"+"userId="+userId+",id="+id+",title='"+title+'\''+",completed="+completed+'}';}}||---|step3:聲明服務(wù)接口|importorg.springframework.http.HttpHeaders;importorg.springframework.http.MediaType;importorg.springframework.http.ResponseEntity;//...publicinterfaceTodoService{@GetExchange("/todos/{id}")TodogetTodoById(@PathVariableIntegerid);@PostExchange(value="/todos",accept=MediaType.APPLICATION_JSON_VALUE)TodocreateTodo(@RequestBody

TodonewTodo);@PutExchange("/todos/{id}")ResponseEntitymodifyTodo(@PathVariableIntegerid,@RequestBodyTodotodo);@PatchExchange("/todos/{id}")HttpHeaderspathRequest(@PathVariableIntegerid,@RequestParamStringtitle);@DeleteExchange("/todos/{id}")voidremoveTodo(@PathVariableIntegerid);}step4:創(chuàng)建HTTP服務(wù)代理對(duì)象|@Configuration(proxyBeanMethods=false)publicclassHttpConfiguration{@BeanpublicTodoServicerequestService(){WebClientwebClient=WebClient.builder().baseUrl("/").build();HttpServiceProxyFactoryproxyFactory=HttpServiceProxyFactory.builder(WebClientAdapter.forClient(webClient)).build();returnproxyFactory.createClient(TodoService.class);}}step5:單元測(cè)試|@SpringBootTestclassHttpApplicationTests{@ResourceprivateTodoServicerequestService;@TestvoidtestQuery(){Todotodo=requestService.getTodoById(1);System.out.println("todo="+todo);}@TestvoidtestCreateTodo(){Todotodo=newTodo();todo.setId(1001);todo.setCompleted(true);todo.setTitle("錄制視頻");todo.setUserId(5001);Todosave=requestService.createTodo(todo);System.out.println(save);}@TestvoidtestModifyTitle(){//org.springframework.http.HttpHeadersHttpHeadersentries=requestService.pathRequest(5,"homework");entries.forEach((name,vals)->{System.out.println(name);vals.forEach(System.out::println);System.out.println("=========================");});}@TestvoidtestModifyTodo(){Todotodo=newTodo();todo.setCompleted(true);todo.setTitle("錄制視頻!!!");todo.setUserId(5002);ResponseEntityresult=requestService.modifyTodo(2,todo);HttpStatusCodestatusCode=result.getStatusCode();HttpHeadersheaders=result.getHeaders();TodomodifyTodo=result.getBody();System.out.println("statusCode="+statusCode);System.out.println("headers="+headers);System.out.println("modifyTodo="+modifyTodo);}@TestvoidtestRemove(){requestService.removeTodo(2);}}

Http服務(wù)接口的方法定義@HttpExchange注解用于聲明接口作為HTTP遠(yuǎn)程服務(wù)。在方法、類級(jí)別使用。通過(guò)注解屬性以及方法的參數(shù)設(shè)置HTTP請(qǐng)求的細(xì)節(jié)。快捷注解簡(jiǎn)化不同的請(qǐng)求方式GetExchangePostExchangePutExchangePatchExchangeDeleteExchange@GetExchange就是@HttpExchange表示的GET請(qǐng)求方式|@HttpExchange(method="GET")public@interfaceGetExchange{@AliasFor(annotation=HttpExchange.class)Stringvalue()default"";@AliasFor(annotation=HttpExchange.class)Stringurl()default"";@AliasFor(annotation=HttpExchange.class)String[]accept()default{};}作為HTTP服務(wù)接口中的方法允許使用的參數(shù)列表參數(shù)說(shuō)明URI設(shè)置請(qǐng)求的url,覆蓋注解的url屬性HttpMethod請(qǐng)求方式,覆蓋注解的method屬性@RequestHeader添加到請(qǐng)求中header。參數(shù)類型可以為Map<String,?>,MultiValueMap<String,?>,單個(gè)值或者Collection<?>@PathVariableurl中的占位符,參數(shù)可為單個(gè)值或Map<String,?>@RequestBody請(qǐng)求體,參數(shù)是對(duì)象@RequestParam請(qǐng)求參數(shù),單個(gè)值或Map<String,?>,MultiValueMap<String,?>,Collection<?>@RequestPart發(fā)送文件時(shí)使用@CookieValue向請(qǐng)求中添加cookie接口中方法返回值返回值類型說(shuō)明void執(zhí)行請(qǐng)求,無(wú)需解析應(yīng)答HttpHeaders存儲(chǔ)response應(yīng)答的header信息對(duì)象解析應(yīng)答結(jié)果,轉(zhuǎn)為聲明的類型對(duì)象ResponseEntity,ResponseEntity解析應(yīng)答內(nèi)容,得到ResponseEntity,從ResponseEntity可以獲取http應(yīng)答碼,header,body內(nèi)容。反應(yīng)式的相關(guān)的返回值包含Mono,Mono,Mono,FluxMono<ResponseEntity>,Mono<ResponseEntity>,Mono<ResponseEntity<Flux>。

組合使用注解@HttpExchange,@GetExchange等可以組合使用。這次使用Albums遠(yuǎn)程服務(wù)接口,查詢Albums信息step1:創(chuàng)建Albums數(shù)據(jù)類|publicclassAlbums{privateintuserId;privateintid;privateStringtitle;//省略set,get@OverridepublicStringtoString(){return"Albums{"+"userId="+userId+",id="+id+",title='"+title+'\''+'}';}}step2:創(chuàng)建AlbumsService接口接口聲明方法,提供HTTP遠(yuǎn)程服務(wù)。在類級(jí)別應(yīng)用@HttpExchange接口,在方法級(jí)別使用@HttpExchange,@GetExchange等|@HttpExchange(url="/")publicinterfaceAlbumsService{@GetExchange("/albums/{aid}")AlbumsgetById(@PathVariableIntegeraid);@HttpExchange(url="/albums/{aid}",method=

"GET",contentType=MediaType.APPLICATION_JSON_VALUE)AlbumsgetByIdV2(@PathVariableIntegeraid);}類級(jí)別的url和方法級(jí)別的url組合在一起為最后的請(qǐng)求url地址。step3:聲明代理|@Configuration(proxyBeanMethods=true)publicclassHttpServiceConfiguration{@BeanpublicAlbumsServicealbumsService(){WebClientwebClient=WebClient.create();HttpServiceProxyFactoryproxyFactory=HttpServiceProxyFactory.builder(WebClientAdapter.forClient(webClient)).build();returnproxyFactory.createClient(AlbumsService.class);}}step4:單元測(cè)試|@SpringBootTestpublicclassTestHttpExchange{@ResourceAlbumsServicealbumsService;@TestvoidgetQuery(){Albumsalbums=albumsService.getById(1);System.out.println("albums="+albums);}@TestvoidgetQueryV2(){Albumsalbums=albumsService.getByIdV2(2);System.out.println("albums="+albums);}}測(cè)試方法能正常完成遠(yuǎn)程方法調(diào)用。

JavaRecord測(cè)試JavaRecord作為返回類型,由框架的HTTP代理轉(zhuǎn)換應(yīng)該內(nèi)容為Record對(duì)象step1:創(chuàng)建Albums的JavaRecord|publicrecordAlbumsRecord(intuserId,intid,Stringtitle){}step2:AlbumsService接口增加新的遠(yuǎn)程訪問(wèn)方法,方法返回類型為Record|@GetExchange("/albums/{aid}")AlbumsRecordgetByIdRecord(@PathVariableIntegeraid);step3:單元測(cè)試,Record接收結(jié)果|@TestvoidgetQueryV3(){AlbumsRecordalbums=albumsService.getByIdRecord(1);System.out.println("albums="+albums);}JavaRecord能夠正確接收應(yīng)該結(jié)果,轉(zhuǎn)為AlbumsRecord對(duì)象。

定制HTTP請(qǐng)求服務(wù)設(shè)置HTTP遠(yuǎn)程的超時(shí)時(shí)間,異常處理在創(chuàng)建接口代理對(duì)象前,先設(shè)置WebClient的有關(guān)配置。step1:設(shè)置超時(shí),異常處理|

@BeanpublicAlb

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論