[Bug日记0002]小白拉取到的Github源码访问swagger-ui.html出错

问题

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.

[Bug日记0002]小白拉取到的Github源码访问swagger-ui.html出错

别人原因

SpringBoot的启动类(类名上面有@SpringBootApplication注解 )与controller包不在同一个目录下

尝试了一圈之后发现自己访问的是http://localhost:8000/swagger-ui

原因

应该访问的是swagger-ui.html页面(真是石乐志)

解决方案

应该访问的是http://localhost:8000/swagger-ui.html (注意+html)

上一篇:nest.js-学习记录:3、使用swagger自动生成接口文档


下一篇:图数据结构,以及使用递归方式实现图的深度优先和广度优先遍历