pom.xml如何添加Swagger相关依赖。
时间: 2023-07-23 13:20:52 浏览: 143
pom.xml依赖配置
5星 · 资源好评率100%
在 Maven 项目中,可以通过在 pom.xml 文件中添加以下依赖来使用 Swagger:
```xml
<!-- Swagger2 -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>3.0.0</version>
</dependency>
<!-- Swagger UI -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>3.0.0</version>
</dependency>
```
其中,springfox-swagger2 是 Swagger 的核心依赖,springfox-swagger-ui 是 Swagger 的 UI 依赖,用于展示 Swagger 的文档页面。
如果使用的是 Spring Boot 2.x 版本,可以使用 springfox-boot-starter 依赖简化配置,例如:
```xml
<!-- Swagger with Spring Boot 2.x -->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
```
在添加依赖后,需要在 Spring Boot 应用程序的启动类上添加 @EnableSwagger2 或 @EnableSwagger2WebMvc 注解来启用 Swagger。例如:
```java
@Configuration
@EnableSwagger2
public class SwaggerConfig {
// ...
}
```
注意:如果使用的是 Spring Boot 3.0 版本,Swagger 的依赖和配置方式会有所不同。可以查看官方文档进行了解。
阅读全文