Questions tagged «springfox»

10
如何配置Spring Security以允许无需身份验证即可访问Swagger URL
我的项目有Spring Security。主要问题:无法访问http:// localhost:8080 / api / v2 / api-docs上的大写URL 。它说缺少或无效的授权标头。 浏览器窗口的屏幕快照 我的pom.xml具有以下条目 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.4.0</version> </dependency> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.4.0</version> </dependency> SwaggerConfig: @Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2).select() .apis(RequestHandlerSelectors.any()) .paths(PathSelectors.any()) .build() .apiInfo(apiInfo()); } private ApiInfo apiInfo() { ApiInfo apiInfo = new …

5
Springfox swagger在Spring Boot 2.2.0中不起作用
我想将Spring Boot v2.1.9升级到2.2.0。但是升级之后,我得到了一些例外,这表示Spring Fox使用的是Spring-plugin-core的旧版本。 是否有其他替代解决方案,还是我需要放弃springfox插件? *************************** APPLICATION FAILED TO START *************************** Description: An attempt was made to call a method that does not exist. The attempt was made from the following location: springfox.documentation.spring.web.plugins.DocumentationPluginsManager.createContextBuilder(DocumentationPluginsManager.java:152) The following method did not exist: org.springframework.plugin.core.PluginRegistry.getPluginFor(Ljava/lang/Object;Lorg/springframework/plugin/core/Plugin;)Lorg/springframework/plugin/core/Plugin; The method's class, org.springframework.plugin.core.PluginRegistry, is available from the following locations: …

2
有任何Springfox替代品吗?
最近两年,我与Springfox合作开发了Spring Boot应用程序。Springfox为您的REST API生成文档和测试ui。太棒了 但是实际上Springfox项目已经死了,并且不支持最新的Spring。我有三个问题 还有其他直接生成Swagger UI的方法吗?还有其他图书馆/项目吗? 如何在Spring Boot项目中实现swagger ui? 也许已经过时了,对于Spring Boot来说,有没有更好的选择? 更新 经过数月的大量使用和测试 SpringDoc OpenApi 我会说这不是springfox的替代品,它要好得多!稳定,易于使用且最新! 我可以100%推荐这个!我们将所有项目迁移到SpringDoc OpenApi。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.