1. 程式人生 > 其它 >SpringBoot整合Swagger3.0使用

SpringBoot整合Swagger3.0使用

SpringBoot整合Swagger3.0使用

一、pom檔案匯入依賴

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-boot-starter</artifactId>
    <version>3.0.0</version>
<dependency>

二、啟動檔案新增@EnableOpenApi

@EnableOpenApi
@SpringBootApplication
public class DemoApplication {
 
    
public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } }

三、啟動訪問路徑:http://localhost:9001/swagger-ui/index.html

備註:埠不一定要和我一樣

注意點

這次更新,移除了原來預設的swagger頁面路徑:http://host/context-path/swagger-ui.html,

新增了兩個可訪問路徑:

  1. http://host/context-path/swagger-ui/index.html
  2. http://host/context-path/swagger-ui/

通過調整日誌級別,還可以看到新版本的swagger文件介面也有新增,除了以前老版本的文件介面/v2/api-docs之外,還多了一個新版本的/v3/api-docs介面。