springboot整合swagger2: 1、依赖包: 代码语言:javascript 复制 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.7.0</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.7...
.addResourceLocations("classpath:/META-INF/resources/"); //springboot 集成swagger2.2后静态资源404,添加如下两行配置 registry.addResourceHandler("/**") .addResourceLocations("classpath:/static/"); registry.addResourceHandler("/webjars/**") .addResourceLocations("classpath:/META-INF/resources/webjars...
Spring Boot 启动后 Swagger 文档页面 404 问题现象 用EasyCode 生成完代码后,Swagger 文档页面可以访问,添加了一些依赖及代码后 Swagger 文档页面 404。 问题分析 跟既存项目对比了一下,pom.xml 没什么区别,Application类上的注解也是对的。 // 注意扫描的包名@SpringBootApplication(scanBasePackages = {"com.ageo...
registry.addResourceHandler("/swagger-ui.html").addResourceLocations("classpath:/META-INF/resources/"); // 解决swagger的js文件无法访问 registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/"); } } 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11....
启动项目之后访问http://localhost:8080/swagger-ui.html,swagger ui看起来挺正常。但是/resources/static下的静态资源404了。 例如这个资源:\src\main\resources\static\js\vue.js,原本可以通过访问http://localhost:8080/js/vue.js看到,但现在是这样:
最近使用最新的SpringBoot2.0集成Swagger2的时候遇到一个问题,集成之后打开Swagger页面的时候出现404,后台提示找不到swagger-ui的页面。 于是我看了下项目依赖swagger的结构: 可以看到 swagger-ui.html 在META-INF/resources目录下,所以我们需要手动的将静态资源路径指向这里,在java中配置为: ...
SpringBoot 配置SwaggerUI 访问404的小坑。 在学习SpringBoot构建Restful API的时候遇到了一个小坑,配置Swagger UI的时候无法访问。 首先在自己的pom文件中加入Swagger的依赖,如下所示: io.springfox springfox-swagger-ui 2.2.2 io.springfox springfox-swagger2 ...
解决springboot集成swagger碰到的坑(报404)⼀:项⽬使⽤springboot集成swagger进⾏调试 配置swagger⾮常简单,主要有三步:1、添加swagger依赖 <!-- 引⼊ swagger等相关依赖 --> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.6.1</version>...
springboot2.x集成swagger 404 not found的问题 有时候我们参考别人的博客和文章,来实现集成swagger的问题。你看文章的版本太老,所以手贱使用最新版,导致404.参考网上的文章也是无解,最后再springfox官方github找到了原因。 博客使用的2.9.x,我使用最新的3.0.0然后怎么访问都是404,最后发现访问地址的问题。
springboot整合swagger2: 1、依赖包: <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.7.0</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> ...