@EnableSwagger2 需要引入什么pom
时间: 2023-11-27 17:50:46 浏览: 87
使用 Spring Boot 开发时,需要在 pom.xml 文件中引入以下依赖:
```xml
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${springfox.version}</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>${springfox.version}</version>
</dependency>
```
其中 `${springfox.version}` 是指定的版本号。如果未指定,则默认使用最新版本。需要注意的是,使用 Swagger 2.9.2 及以上版本时,还需要在 pom.xml 中添加以下配置:
```xml
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-bom</artifactId>
<version>${springfox.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
```
阅读全文