6-Spring-Boot框架開發(fā)-快速開發(fā)RESTful-API接口_第1頁
6-Spring-Boot框架開發(fā)-快速開發(fā)RESTful-API接口_第2頁
6-Spring-Boot框架開發(fā)-快速開發(fā)RESTful-API接口_第3頁
6-Spring-Boot框架開發(fā)-快速開發(fā)RESTful-API接口_第4頁
6-Spring-Boot框架開發(fā)-快速開發(fā)RESTful-API接口_第5頁
已閱讀5頁,還剩11頁未讀, 繼續(xù)免費閱讀

下載本文檔

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

文檔簡介

SpringBoot框架開發(fā)—快速開發(fā)RESTfulAPI接口CONTENTSRESTful

API風格01.SpringBoot相關(guān)注解02.實現(xiàn)RESTful

API接口03.本節(jié)知識點00知識點了解掌握熟練精通RESTfulAPI接口風格√

注解@RestController的應(yīng)用

注解@ResponseBody的應(yīng)用

注解@RequestMapping的應(yīng)用

注解@RequestParam的應(yīng)用

注解@PathVariable的應(yīng)用

編寫RESTfulAPI接口

√PART01RESTful

API風格RESTful

API風格01RESTfulAPI接口要求返回的格式是application/json,我們知道網(wǎng)頁返回的格式一般是text/html,如下表示一個傳統(tǒng)接口和RESTful接口的對比表。功能傳統(tǒng)接口類型Restful接口類型查詢/game/query?id=1GET/game/1GET添加/game/insertPOST/gamePOST修改/game/updatePOST/game/1PUT刪除/game/delete?id=1GET/game/1DELETEPART02SpringBoot相關(guān)注解SpringBoot相關(guān)注解02@RestController一般用于Controller類上,指定所有接口返回的數(shù)據(jù)都是text/json格式。@ResponseBody用于方法上,指定接口返回text/json格式,用了@RestController就沒有必要ResponseBody。@RequestParam用于方法上,映射請求參數(shù)到j(luò)ava方法的參數(shù),當前端傳遞的參數(shù)和后臺自己定義的參數(shù)不一致時,可以使用name屬性來標記。@PathVariable用于方法上,映射url片段到j(luò)ava方法的參數(shù)。SpringBoot相關(guān)注解02@GetMapping用于方法上,是一個組合注解,與@RequestMapping(method=RequestMethod.GET)作用一致。@PostMapping用于方法上,是一個組合注解,與@RequestMapping(method=RequestMethod.POST)作用一致。@PutMapping用于方法上,是一個組合注解,與@RequestMapping(method=RequestMethod.PUT)作用一致。@DeleteMapping用于方法上,是一個組合注解,與@RequestMapping(method=RequestMethod.DELETE)作用一致。PART03實現(xiàn)RESTful

API接口實現(xiàn)RESTful

API接口03【實例3-14】【任務(wù)要求】

在SpringBoot項目中,使用MyBatis框架進行數(shù)據(jù)訪問,以游戲模塊為例,實現(xiàn)RESTful的接口開發(fā)。

使用SpringBoot框架可以快速實現(xiàn)一套符合規(guī)范,并且具有RESTful風格的API接口。實現(xiàn)RESTful

API接口03【任務(wù)實現(xiàn)】

【實例3-13】已經(jīng)實現(xiàn)了對數(shù)據(jù)庫的增刪改查操作,這里只需要添加業(yè)務(wù)層和控制層。創(chuàng)建service對象

在java目錄下創(chuàng)建.service包,并添加業(yè)務(wù)層service對象。@Service

publicclassGameService{

@Autowired

GameMappergameMapper;

publicGamefindGameById(Integerid){

returngameMapper.findGameById(id);

}

publicList<Game>findGames(){

returngameMapper.findGames();

}

publicintinsertGame(Gamegame){

returngameMapper.insertGame(game);

}

publicintupdateGame(Gamegame){

returngameMapper.updateGame(game);

}

publicintdeleteGame(Integerid){

returngameMapper.deleteGame(id);

}}實現(xiàn)RESTful

API接口03【任務(wù)實現(xiàn)】2.創(chuàng)建controller類在java目錄下創(chuàng)建.controller包,并添加控制層對象。@RestController

@RequestMapping("/game")

publicclassGameController{

@Autowired

GameServicegameService;

@GetMapping("/{gameId}")

publicGamegetGameById(@PathVariable("gameId")Integerid){

returngameService.findGameById(id);

}

@GetMapping

publicList<Game>findGames(){

returngameService.findGames();

}

@PostMapping

publicintinsertGame(@RequestBodyGamegame){

returngameService.insertGame(game);

}實現(xiàn)RESTful

API接口03【任務(wù)實現(xiàn)】2.創(chuàng)建controller類在java目錄下創(chuàng)建.controller包,并添加控制層對象。

@PutMapping("/{gameId}")

publicintupdateGame(@PathVariable("gameId")Integerid){

Gamegame=gameService.findGameById(id);

if(game!=null){

thrownewRuntimeException("thegameisnotfound");

}

returngameService.updateGame(game);

}

@DeleteMapping("/{Id}")

publicintdeleteGame(@PathVariableIntegerid){

returngameService.deleteGame(id);

}

}

實現(xiàn)RESTful

API接口03【任務(wù)實現(xiàn)】3.接口測試

啟動項目,對于Get請求,可以在瀏覽器地址欄上輸入請求路徑,直接顯示查詢結(jié)果,返回json數(shù)據(jù)格式。實現(xiàn)RESTful

API接口03【任務(wù)實現(xiàn)】3.接口測試

[

{

"id":2,

"gameName":"消消樂2",

"categoryId":2,

"price":220,

"description":"消消樂2游戲",

"pubdate":"2020-12-09T02:24:19.000+00:00"

},

{

"id":3

溫馨提示

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

評論

0/150

提交評論