spring boot配置springdoc-openapi-ui
时间: 2023-08-29 18:10:09 浏览: 328
要在Spring Boot项目中配置springdoc-openapi-ui,你需要执行以下步骤:
1. 添加相关依赖:在你的项目的pom.xml文件中添加以下依赖:
```xml
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>1.5.8</version>
</dependency>
```
2. 配置Swagger UI:在你的Spring Boot应用程序的配置类中,添加`@EnableSwagger2Doc`注解。
```java
import org.springframework.context.annotation.Configuration;
import org.springdoc.core.SwaggerUiConfigParameters;
import org.springdoc.core.SwaggerUiConfigProperties;
@Configuration
@EnableSwagger2Doc
public class SwaggerConfig {
// 可选:自定义Swagger UI配置
@Bean
public SwaggerUiConfigParameters swaggerUiConfigParameters(SwaggerUiConfigProperties swaggerUiConfigProperties) {
return SwaggerUiConfigParametersBuilder.builder()
.configProperties(swaggerUiConfigProperties)
.build();
}
}
```
3. 启动应用程序:启动你的Spring Boot应用程序,并访问`http://localhost:8080/swagger-ui.html`,你应该能够看到生成的API文档和交互式UI。
请注意,上述配置是基于springdoc-openapi-ui 1.5.8版本。确保使用与你的项目版本兼容的正确版本。
希望这能帮助到你配置springdoc-openapi-ui!如果有任何问题,请随时提问。
阅读全文