如何在maven项目或者gradle项目中搭建swagger-本地测试工具

如何在maven项目或者gradle项目中搭建swagger-本地测试工具

Swagger是当前最好用的Restful API文档生成的开源项目,通过swagger-spring项目,实现了与SpingMVC框架的无缝集成功能,方便生成spring restful风格的接口文档, 同时swagger-ui还可以测试spring restful风格的接口功能。

1.在pom.xml中引入依赖


        <dependency>
            <groupId>io.springfoxgroupId>
            <artifactId>springfox-swagger2artifactId>
            <version>2.7.0version>
        dependency>
        <dependency>
            <groupId>io.springfoxgroupId>
            <artifactId>springfox-swagger-ui

你可能感兴趣的:(swagger2,java,spring,spring,boot,mybatis)