欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring MVC 整合 Swagger2

程序员文章站 2022-07-02 20:50:32
...

1.导入Swagger相关包

pom.xml

<!-- swagger2 start -->
<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 end -->

2.修改spring-mvc.xml文件

增加bean:

<!-- swagger2 配置 -->
<bean class="springfox.documentation.swagger2.configuration.Swagger2DocumentationConfiguration" id="swagger2Config"/>

3.结果

访问地址:

http://localhost:8080/swagger-ui.html

Spring MVC 整合 Swagger2

相关标签: swagger spring-mvc