嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 6 元微信扫码支付:6 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
解放双手,从此不用再写接口文档
springboot 直接在项目中修改swagger的路径 启动之后 登录http://127.0.0.1:8080/toWord 下载文档即可
【源码目录】
swagger2word
├── README.md
├── Swagger2Word.iml
├── demo_word.jpg
├── pom.xml
├── src
│ └── main
│ ├── java
│ │ └── org
│ │ └── word
│ │ ├── Application.java
│ │ ├── config
│ │ │ ├── JavaConfig.java
│ │ │ └── SwaggerDocumentationConfig.java
│ │ ├── controller
│ │ │ ├── IndexController.java
│ │ │ └── WordController.java
│ │ ├── model
│ │ │ ├── ModelAttr.java
│ │ │ ├── Request.java
│ │ │ ├── Response.java
│ │ │ └── Table.java
│ │ ├── service
│ │ │ ├── WordService.java
│ │ │ └── impl
│ │ │ └── WordServiceImpl.java
│ │ └── utils
│ │ ├── JsonUtils.java
│ │ └── MenuUtils.java
│ └── resources
│ ├── application.yml
│ ├── logback.xml
│ └── templates
│ ├── index.html
│ └── word.html
├── swagger2word.jpg
├── swagger返回值示例.png
└── target
├── classes
│ ├── application.yml
│ ├── logback.xml
│ ├── org
│ │ └── word
│ │ ├── Application.class
│ │ ├── config
│ │ │ ├── JavaConfig.class
│ │ │ └── SwaggerDocumentationConfig.class
│ │ ├── controller
│ │ │ ├── IndexController.class
│ │ │ └── WordController.class
│ │ ├── model
│ │ │ ├── ModelAttr.class
│ │ │ ├── Request.class
│ │ │ ├── Response.class
│ │ │ └── Table.class
│ │ ├── service
│ │ │ ├── WordService.class
│ │ │ └── impl
│ │ │ └── WordServiceImpl.class
│ │ └── utils
│ │ ├── JsonUtils.class
│ │ └── MenuUtils.class
│ └── templates
│ ├── index.html
│ └── word.html
└── generated-sources
└── annotations
26 directories, 40 files