因爲Spring Boot可以快速開發、便捷部署等特性,相信有很大一部分Spring Boot的用戶會用來構建RESTful API。而咱們構建RESTful API的目的一般都是因爲多終端的緣由,這些終端會共用不少底層業務邏輯,所以咱們會抽象出這樣一層來同時服務於多個移動端或者Web前端。html
這樣一來,咱們的RESTful API就有可能要面對多個開發人員或多個開發團隊:IOS開發、Android開發或是Web開發等。爲了減小與其餘團隊平時開發期間的頻繁溝通成本,傳統作法咱們會建立一份RESTful API文檔來記錄全部接口細節,然而這樣的作法有如下幾個問題:前端
爲了解決上面這樣的問題,本文將介紹RESTful API的重磅好夥伴Swagger2,它能夠輕鬆的整合到Spring Boot中,並與Spring MVC程序配合組織出強大RESTful API文檔。它既能夠減小咱們建立文檔的工做量,同時說明內容又整合入實現代碼中,讓維護文檔和修改代碼整合爲一體,可讓咱們在修改代碼邏輯的同時方便的修改文檔說明。另外Swagger2也提供了強大的頁面測試功能來調試每一個RESTful API。具體效果以下圖所示:java
下面來具體介紹,若是在Spring Boot中使用Swagger2。首先,咱們須要一個Spring Boot實現的RESTful API工程,若您沒有作過這類內容,建議先閱讀
Spring Boot構建一個較爲複雜的RESTful APIs和單元測試。git
下面的內容咱們會以教程樣例中的Chapter3-1-1進行下面的實驗(Chpater3-1-5是咱們的結果工程,亦可參考)。web
在pom.xml
中加入Swagger2的依賴spring
<dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.2.2</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.2.2</version> </dependency>
在Application.java
同級建立Swagger2的配置類Swagger2
。api
1 @Configuration 2 @EnableSwagger2 3 public class Swagger2 { 4 @Bean 5 public Docket createRestApi() { 6 return new Docket(DocumentationType.SWAGGER_2) 7 .apiInfo(apiInfo()) 8 .select() 9 .apis(RequestHandlerSelectors.basePackage("com.didispace.web")) 10 .paths(PathSelectors.any()) 11 .build(); 12 } 13 private ApiInfo apiInfo() { 14 return new ApiInfoBuilder() 15 .title("Spring Boot中使用Swagger2構建RESTful APIs") 16 .description("更多Spring Boot相關文章請關注:http://blog.didispace.com/") 17 .termsOfServiceUrl("http://blog.didispace.com/") 18 .contact("程序猿DD") 19 .version("1.0") 20 .build(); 21 } 22 }
如上代碼所示,經過@Configuration
註解,讓Spring來加載該類配置。再經過@EnableSwagger2
註解來啓用Swagger2。springboot
再經過createRestApi
函數建立Docket
的Bean以後,apiInfo()
用來建立該Api的基本信息(這些基本信息會展示在文檔頁面中)。select()
函數返回一個ApiSelectorBuilder
實例用來控制哪些接口暴露給Swagger來展示,本例採用指定掃描的包路徑來定義,Swagger會掃描該包下全部Controller定義的API,併產生文檔內容(除了被@ApiIgnore
指定的請求)。restful
在完成了上述配置後,其實已經能夠生產文檔內容,可是這樣的文檔主要針對請求自己,而描述主要來源於函數等命名產生,對用戶並不友好,咱們一般須要本身增長一些說明來豐富文檔內容。以下所示,咱們經過@ApiOperation
註解來給API增長說明、經過@ApiImplicitParams
、@ApiImplicitParam
註解來給參數增長說明。數據結構
1 @RestController 2 @RequestMapping(value="/users") // 經過這裏配置使下面的映射都在/users下,可去除 3 public class UserController { 4 static Map<Long, User> users = Collections.synchronizedMap(new HashMap<Long, User>()); 5 @ApiOperation(value="獲取用戶列表", notes="") 6 @RequestMapping(value={""}, method=RequestMethod.GET) 7 public List<User> getUserList() { 8 List<User> r = new ArrayList<User>(users.values()); 9 return r; 10 } 11 @ApiOperation(value="建立用戶", notes="根據User對象建立用戶") 12 @ApiImplicitParam(name = "user", value = "用戶詳細實體user", required = true, dataType = "User") 13 @RequestMapping(value="", method=RequestMethod.POST) 14 public String postUser(@RequestBody User user) { 15 users.put(user.getId(), user); 16 return "success"; 17 } 18 @ApiOperation(value="獲取用戶詳細信息", notes="根據url的id來獲取用戶詳細信息") 19 @ApiImplicitParam(name = "id", value = "用戶ID", required = true, dataType = "Long") 20 @RequestMapping(value="/{id}", method=RequestMethod.GET) 21 public User getUser(@PathVariable Long id) { 22 return users.get(id); 23 } 24 @ApiOperation(value="更新用戶詳細信息", notes="根據url的id來指定更新對象,並根據傳過來的user信息來更新用戶詳細信息") 25 @ApiImplicitParams({ 26 @ApiImplicitParam(name = "id", value = "用戶ID", required = true, dataType = "Long"), 27 @ApiImplicitParam(name = "user", value = "用戶詳細實體user", required = true, dataType = "User") 28 }) 29 @RequestMapping(value="/{id}", method=RequestMethod.PUT) 30 public String putUser(@PathVariable Long id, @RequestBody User user) { 31 User u = users.get(id); 32 u.setName(user.getName()); 33 u.setAge(user.getAge()); 34 users.put(id, u); 35 return "success"; 36 } 37 @ApiOperation(value="刪除用戶", notes="根據url的id來指定刪除對象") 38 @ApiImplicitParam(name = "id", value = "用戶ID", required = true, dataType = "Long") 39 @RequestMapping(value="/{id}", method=RequestMethod.DELETE) 40 public String deleteUser(@PathVariable Long id) { 41 users.remove(id); 42 return "success"; 43 } 44 }
完成上述代碼添加上,啓動Spring Boot程序,訪問:http://localhost:8080/swagger-ui.html
。就能看到前文所展現的RESTful API的頁面。咱們能夠再點開具體的API請求,以POST類型的/users請求爲例,可找到上述代碼中咱們配置的Notes信息以及參數user的描述信息,以下圖所示。
在上圖請求的頁面中,咱們看到user的Value是個輸入框?是的,Swagger除了查看接口功能外,還提供了調試測試功能,咱們能夠點擊上圖中右側的Model Schema(黃色區域:它指明瞭User的數據結構),此時Value中就有了user對象的模板,咱們只須要稍適修改,點擊下方「Try it out!」
按鈕,便可完成了一次請求調用!
此時,你也能夠經過幾個GET請求來驗證以前的POST請求是否正確。
相比爲這些接口編寫文檔的工做,咱們增長的配置內容是很是少並且精簡的,對於原有代碼的侵入也在忍受範圍以內。所以,在構建RESTful API的同時,加入swagger來對API文檔進行管理,是個不錯的選擇。
完整結果示例可查看Chapter3-1-5。
本文轉自- 程序猿DD-翟永超 ......