使用vitejs+vue3+antdv重构swagger文档展示

This commit is contained in:
暮光:城中城
2021-10-17 19:50:22 +08:00
parent 28bcbfd379
commit 9267aed477
72 changed files with 4236 additions and 3 deletions

View File

@@ -42,6 +42,14 @@ public class DocSystemController {
return modelAndView;
}
@AuthMan
@GetMapping("/doc-swagger-plus")
public ModelAndView swaggerPlus() {
ModelAndView modelAndView = new ModelAndView("/doc-swagger-plus.html");
modelAndView.setStatus(HttpStatus.OK);
return modelAndView;
}
@AuthMan
@GetMapping("/doc-dubbo")
public ModelAndView dubbo() {