SwaggerUI+bootstrapui加强

这里写自定义目录标题

  • Swagger接口文档加强
    • 1.配置pom.xml
    • 2.启动类加注解
    • 3.浏览器访问如图

Swagger接口文档加强

Swagger原生的ui界面不太美观,所以采用了开源加强版,springboot2.x示例

1.配置pom.xml


    2.9.2
    1.9.0


    io.springfox
    springfox-swagger2
    ${springfox-swagger2.version}
    compile



    com.github.xiaoymin
    swagger-bootstrap-ui
    ${swagger-bootstrap-ui.version}

2.启动类加注解

@EnableSwagger2
@EnableSwaggerBootstrapUI

3.浏览器访问如图

http://localhost:8080/doc.html

SwaggerUI+bootstrapui加强_第1张图片

你可能感兴趣的:(SwaggerUI+bootstrapui加强)