当前位置: 首页 > 工具软件 > swagger-mg-ui > 使用案例 >

【SpringBoot深入浅出系列】SpringBoot定义swagger2的UI界面

颛孙正卿
2023-12-01


SpringBoot 定义 swagger2 的 UI 界面通过在 pom.xml 中配置依赖实现,以本地 localhost:8080 访问为例。

一、访问http://localhost:8080/swagger-ui.html

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.10.5</version>
</dependency>

二、访问http://localhost:8080/doc.html

<dependency>
    <groupId>com.github.xiaoymin</groupId>
    <artifactId>swagger-bootstrap-ui</artifactId>
    <version>1.9.3</version>
</dependency>

三、访问http://localhost:8080/docs.html

<dependency>
    <groupId>com.github.caspar-chen</groupId>
    <artifactId>swagger-ui-layer</artifactId>
    <version>1.1.3</version>
</dependency>

四、访问http://localhost:8080/document.html

<dependency>
    <groupId>com.zyplayer</groupId>
    <artifactId>swagger-mg-ui</artifactId>
    <version>2.0.1</version>
</dependency>
 类似资料: