前言
在前面的博客中,我们将服务注册到了eureka上,可以从eureka的ui界面中,看到有哪些服务已经注册到了eureka server上,但是,如果我们想查看当前服务提供了哪些restful接口方法的话,就无从获取了,传统的方法是梳理一篇服务的接口文档来供开发人员之间来进行交流,这种情况下,很多时候,会造成文档和代码的不一致性,比如说代码改了,但是接口文档没有改等问题,而swagger2则给我们提供了一套完美的解决方案,下面,我们来看看swagger2是如何来解决问题的。
一、引入swagger2依赖的jar包
1
2
3
4
5
6
7
8
9
10
11
|
<!-- swagger2 --> <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> |
二、初始化swagger2的配置
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
@configuration @enableswagger2 // 启用swagger2 public class swagger2 { @bean public docket createrestapi() { // 创建api基本信息 return new docket(documentationtype.swagger_2) .apiinfo(apiinfo()) .select() .apis(requesthandlerselectors.basepackage( "com.chhliu.jpa" )) // 扫描该包下的所有需要在swagger中展示的api,@apiignore注解标注的除外 .paths(pathselectors.any()) .build(); } private apiinfo apiinfo() { // 创建api的基本信息,这些信息会在swagger ui中进行显示 return new apiinfobuilder() .title( "spring boot中使用swagger2构建restful apis" ) // api 标题 .description( "rdcloud-jpa提供的restful apis" ) // api描述 .contact( "chhliu@" ) // 联系人 .version( "1.0" ) // 版本号 .build(); } } |
注:该配置类需要在application同级目录下创建,在项目启动的时候,就初始化该配置类
三、完善api文档信息
1
2
3
4
5
6
7
8
9
10
11
12
|
public interface sonarcontrolleri { @apioperation (value= "获取项目组sonar对应的url信息" , notes= "根据id获取项目组sonar对应的url信息" ) // 使用该注解描述接口方法信息 @apiimplicitparams ({ @apiimplicitparam (name = "id" , value = "sonarurl表id" , required = true , datatype = "long" , paramtype= "path" ) }) // 使用该注解描述方法参数信息,此处需要注意的是paramtype参数,需要配置成path,否则在ui中访问接口方法时,会报错 @getmapping ( "/get/{id}" ) sonarurl get( @pathvariable long id); @apioperation (value= "获取项目组sonar对应的所有url信息" ) @getmapping ( "/get/all" ) list<sonarurl> getall(); } |
注:paramtype表示参数的类型,可选的值为"path","body","query","header","form"
四、完善返回类型信息
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
@entity (name = "sonar_url" ) public class sonarurl implements serializable { /** * */ private static final long serialversionuid = 1l; @apimodelproperty (value= "主键" , hidden= false , notes= "主键,隐藏" , required= true , datatype= "long" ) // 使用该注解描述属性信息,当hidden=true时,该属性不会在api中显示 @id @generatedvalue (strategy = generationtype.auto) private long id; @apimodelproperty (value= "url链接地址" ) @column (name= "url" ) private string url; @apimodelproperty (value= "项目组" ) @column (name= "team" ) private string team; @apimodelproperty (value= "部门" ) @column (name= "department" ) private string department; ……省略getter,setter方法…… } |
五、启动应用
1、在浏览器中输入:http://localhost:7622/swagger-ui.html
2、结果如下:
六、api文档访问与测试
swagger除了提供api接口查看的功能外,还提供了调试测试功能
测试结果如下:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://blog.csdn.net/liuchuanhong1/article/details/58594045