bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

Swagger擴展開發(fā)中任意架構實現(xiàn)SwaggerDoc注冊的示例分析

這篇文章給大家介紹Swagger擴展開發(fā)中任意架構實現(xiàn)Swagger Doc注冊的示例分析,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

網(wǎng)站建設哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、小程序開發(fā)、集團企業(yè)網(wǎng)站建設等服務項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了廣陵免費建站歡迎大家使用!

緣起:公司08年以前的老項目,跟著迭代了一個版本,架構太老自己干著也受氣。于是提議升級為SpringBoot 這種新的能好受一點。但是老接口太多,老接口是通過自定義實現(xiàn)的Servlet,按照掃描Bean 函數(shù)通過反射的方式調(diào)用。也不想把所有接口都轉為新的,舊接口前端要 Swagger 沒辦法,硬著頭皮上。

查了大量資料,都是 SpringBoot 集成 Swagger,重復、簡單技術含量很低,沒找到我想要的。

首先把項目一通整合,一通重構支持了 SpringBoot,通過SpringBoot 啟動,并且集成了Swagger,新寫的RESTAPI 都支持Swagger?,F(xiàn)在需要掃描舊接口,生成Swagger。

  1. 實現(xiàn)一個Spring ApplicationListener,在Spring ApplicationContext 初始化完成后調(diào)用,用于生成舊接口的Swagger 掃描。

@Repository
public class SwaggerExtentionSupport implements ApplicationListener<ContextRefreshedEvent> {
    @Override
    public void onApplicationEvent(ContextRefreshedEvent event) {
        // Spring 框架加載完全后,掃描 bean,獲取 servlet
        initSwagger(event.getApplicationContext());
    }
}
  1. 注入 DocumentationCache

 @Autowired
DocumentationCache documentationCache;

// Swagger 默認是 Default,就接口我們放到自定義的 group 下
@Value("${swagger.group}")
private String groupName;

通過 Debug,發(fā)現(xiàn)新實現(xiàn)的SpringBoot接口,構造的如下:

Swagger擴展開發(fā)中任意架構實現(xiàn)Swagger Doc注冊的示例分析

  1. 開始掃描接口

private void initSwagger(ApplicationContext context) {
    Documentation documentation = documentationCache.documentationByGroup(groupName);
    if(documentation == null) {
        // 如果 groupName 指定的下沒有,則掛載 default 上
        documentation = documentationCache.documentationByGroup(Docket.DEFAULT_GROUP_NAME);
    }
    if (documentation != null) {
        // 取得所有的 API 合集
        Multimap<String, ApiListing> apiListings = documentation.getApiListings();
        Class[] clazzs = ... //Scan Classes
        for (Class<?> aClass : clazzs) {
            log.info("add swagger bean {}", aClass.getSimpleName());
            Method[] servletMethods = aClass.getDeclaredMethods();
            for (Method servletMethod : servletMethods) {
                String methodName = servletMethod.getName();
                // 獲得接口名稱,必須符合是API接口,且方法是 public
                if(validSwagger(methodName) && Modifier.isPublic(servletMethod.getModifiers())) {
                    // 返回 tags
                    Set<Tag> tags = addApi(apiListings, documentation.getBasePath(), name, methodName);
                    if(!tags.isEmpty()) {
                        documentation.getTags().addAll(tags);
                    }
                }
            }
            log.info("swagger apis size: {}", apiListings.size());
        }
    }
}
  1. 把掃描到合法的添加到Swagger

private Set<Tag> addApi(Multimap<String, ApiListing> apiListings,
                            String basePath,
                            String beanName,
                            String methodName) {
    // 獲取名稱, 去除后綴
    String optGroup = getName(beanName);
    String apiId = optGroup + "_" + methodName; // 全局唯一
    String optId = methodName;

    // 采用 apiID,檢測是否唯一,后續(xù)加到同一個tag下
    Collection<ApiListing> apis = apiListings.get(apiId);
    if(apis == null) {
        // 后面只是用 apis 的 size 獲取長度
        apis = new HashSet<>();
    }

    ArrayList<ApiDescription> apis1 = new ArrayList<>();
    ArrayList<Operation> operations = new ArrayList<>();

    ResponseMessage v200 = new ResponseMessageBuilder().code(200).message("OK").build();
    ResponseMessage v401 = new ResponseMessageBuilder().code(401).message("Unauthorized").build();
    ResponseMessage v403 = new ResponseMessageBuilder().code(403).message("Forbidden").build();
    ResponseMessage v404 = new ResponseMessageBuilder().code(404).message("Not Found").build();

    // tag,Swagger 首頁展示的都是tag,tag下掛載的是接口
    HashSet<Tag> tags = new HashSet<>();

    // description 是生成 API JS 的文件名
    // optGroup 是生成的函數(shù)名
    Tag tag = new Tag(optGroup, optGroup + "Controller");
    tags.add(tag);
    
    //暫時先不要參數(shù)
    ArrayList<Parameter> parameters = new ArrayList<>();
   
    // 注意 position,必須是不重復的值,數(shù)值 0-n
    // Operation 只需要 tag name,他決定了該 api 在 Swagger 上掛載的tag
    Operation operaGet = new Operation(
                HttpMethod.GET,
                "do exec " + optGroup + "." + methodName,
                "",
                new ModelRef("string"),
                optId+"UsingGET",
                0,
                Sets.newHashSet(tag.getName()),
                Sets.newHashSet(MediaType.ANY_TYPE.toString()),
                Sets.newHashSet(MediaType.create("application", "json").toString()),
                new HashSet<>(),
                new ArrayList<>(),
                parameters,
                Sets.newHashSet(v200, v401, v403, v404),
                "",
                false,
                new ArrayList<>()
        );

    operations.add(operaGet);
    //operations.add(operaPost);

    String url = "/" + beanName + "?invoke=" + methodName;
    apis1.add(new ApiDescription(groupName,
                url,
                beanName+"." + methodName,
                operations, false));

    // 注意 position,必須是不重復的值,這里我用 apis.size()
    ApiListing apiListing = new ApiListing(
                API_VER,
                basePath,
                "/" + beanName,
                new HashSet<>(),new HashSet<>(),"", new HashSet<>(), new ArrayList<>(),
                apis1,
                new HashMap<>(), beanName+"." + methodName, apis.size(), tags);

    // 放到api列表中
    apiListings.put(apiId, apiListing);

    // 返回 tag,tag 會顯示到 Swagger Content
    return tags;
}

生成 Swagger 效果如:

Swagger擴展開發(fā)中任意架構實現(xiàn)Swagger Doc注冊的示例分析

關于Swagger擴展開發(fā)中任意架構實現(xiàn)Swagger Doc注冊的示例分析就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

標題名稱:Swagger擴展開發(fā)中任意架構實現(xiàn)SwaggerDoc注冊的示例分析
網(wǎng)頁鏈接:http://vcdvsql.cn/article6/pepjig.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供App開發(fā)網(wǎng)站設計公司營銷型網(wǎng)站建設網(wǎng)站維護定制開發(fā)ChatGPT

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

綿陽服務器托管