在Spring Boot中整合Swagger可以方便地生成API文件並進行介面測試。要在Spring Boot 3.2.3中整合Swagger,你可以按照以下步驟進行操作:
1.新增Swagger依賴到pom.xml檔案中:
點選檢視程式碼
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
2.建立一個Swagger配置類,用於配置Swagger的屬性:
點選檢視程式碼
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
@Configuration
public class SwaggerConfig {
@Bean
public Docket api() {
return new Docket(DocumentationType.OAS_30)
.select()
.apis(RequestHandlerSelectors.basePackage("your.base.package"))
.paths(PathSelectors.any())
.build();
}
}
3.在application.properties或application.yml檔案中配置Swagger相關屬性:
springdoc.swagger-ui.path=/swagger-ui.html
4.啟動專案後,訪問http://localhost:8080/swagger-ui.html即可檢視生成的API文件。
以上是在Spring Boot 3.2.3中整合Swagger的基本步驟,具體的配置和使用方式可以根據實際需求進行調整。希望對你有所幫助!