|
@ -0,0 +1,46 @@
|
|
|
package com.yihu.swagger;
|
|
|
|
|
|
import io.github.swagger2markup.GroupBy;
|
|
|
import io.github.swagger2markup.Language;
|
|
|
import io.github.swagger2markup.Swagger2MarkupConfig;
|
|
|
import io.github.swagger2markup.Swagger2MarkupConverter;
|
|
|
import io.github.swagger2markup.builder.Swagger2MarkupConfigBuilder;
|
|
|
import io.github.swagger2markup.markup.builder.MarkupLanguage;
|
|
|
|
|
|
import java.net.URL;
|
|
|
import java.nio.file.Path;
|
|
|
import java.nio.file.Paths;
|
|
|
|
|
|
/**
|
|
|
* Swagger-ui静态文档生示例
|
|
|
* 1.启动服务
|
|
|
* 2.运行此main方法
|
|
|
* 3.编译项目
|
|
|
* Created by progr1mmer on 2018/8/21.
|
|
|
*
|
|
|
*/
|
|
|
public class SwaggerDocsExample {
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
//1.请求 http://ip:port/swagger-resources获取group
|
|
|
String group = "Default";
|
|
|
//2.定义请求地址 new URL("http://ip:port/v2/api-docs?group=" + groupName)
|
|
|
URL remoteSwaggerFile = new URL("http://127.0.0.1:10020/v2/api-docs?group=" + group);
|
|
|
//3.定义文件输出路径 Paths.get("svr/svr-base/build/" + group)
|
|
|
Path outputFile = Paths.get("svr/svr-base/build/" + group); //文档输出地址
|
|
|
|
|
|
Swagger2MarkupConfig config = new Swagger2MarkupConfigBuilder()
|
|
|
.withMarkupLanguage(MarkupLanguage.ASCIIDOC)
|
|
|
.withOutputLanguage(Language.ZH)
|
|
|
.withPathsGroupedBy(GroupBy.TAGS)
|
|
|
.withGeneratedExamples()
|
|
|
.withoutInlineSchema()
|
|
|
//.withBasePathPrefix()
|
|
|
.build();
|
|
|
|
|
|
Swagger2MarkupConverter converter = Swagger2MarkupConverter.from(remoteSwaggerFile)
|
|
|
.withConfig(config)
|
|
|
.build();
|
|
|
|
|
|
converter.toFile(outputFile);
|
|
|
}
|
|
|
}
|