คำถามติดแท็ก swagger-2.0

5
ฉันจะแสดง 'Authorization: Bearer <token>' ใน Swagger Spec ได้อย่างไร (swagger.json)
ฉันพยายามจะสื่อว่ารูปแบบการตรวจสอบความถูกต้อง / ความปลอดภัยต้องการการตั้งค่าส่วนหัวดังนี้: Authorization: Bearer &lt;token&gt; นี่คือสิ่งที่ฉันมีตามเอกสารของ Swagger : securityDefinitions: APIKey: type: apiKey name: Authorization in: header security: - APIKey: []

10
วิธีกำหนดค่า Spring Security เพื่อให้สามารถเข้าถึง Swagger URL ได้โดยไม่ต้องตรวจสอบสิทธิ์
โครงการของฉันมี Spring Security ปัญหาหลัก: ไม่สามารถเข้าถึง URL ผยองที่http: // localhost: 8080 / API / v2 / API-เอกสาร มันขึ้นว่า Missing or invalid Authorization header ภาพหน้าจอของหน้าต่างเบราว์เซอร์ My pom.xml มีรายการดังต่อไปนี้ &lt;dependency&gt; &lt;groupId&gt;io.springfox&lt;/groupId&gt; &lt;artifactId&gt;springfox-swagger2&lt;/artifactId&gt; &lt;version&gt;2.4.0&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;io.springfox&lt;/groupId&gt; &lt;artifactId&gt;springfox-swagger-ui&lt;/artifactId&gt; &lt;version&gt;2.4.0&lt;/version&gt; &lt;/dependency&gt; SwaggerConfig: @Configuration @EnableSwagger2 public class SwaggerConfig { @Bean public Docket api() { return new …

5
Springfox swagger ไม่ทำงานใน spring boot 2.2.0
ฉันต้องการอัพเกรด spring boot v2.1.9 เป็น 2.2.0 แต่หลังจากการอัพเกรดฉันได้รับข้อยกเว้นบางอย่างซึ่งบอกว่าสปริงฟ็อกซ์กำลังใช้สปริง - ปลั๊กอิน - คอร์เวอร์ชันเก่ากว่า มีวิธีอื่นในการแก้ปัญหานี้หรือไม่หรือฉันต้องเลิกใช้ปลั๊กอิน 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 …

10
Spring boot 2.2.0 ปัญหาการเริ่มต้น Spring HateOas
ฉันย้ายโครงการจาก spring boot 2.1.9 เป็น 2.2.0 ในขณะที่เริ่มโครงการกำลังเผชิญerrorข้อความด้านล่าง สิ่งที่อาจทำให้เกิดไม่ได้ใช้ไฟล์hateoasของฉันpom.xmlอย่างใดอย่างหนึ่ง Caused by: org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type 'org.springframework.plugin.core.PluginRegistry&lt;org.springframework.hateoas.client.LinkDiscoverer, org.springframework.http.MediaType&gt;' available: expected single matching bean but found 17: modelBuilderPluginRegistry,modelPropertyBuilderPluginRegistry,typeNameProviderPluginRegistry,syntheticModelProviderPluginRegistry,documentationPluginRegistry,apiListingBuilderPluginRegistry,operationBuilderPluginRegistry,parameterBuilderPluginRegistry,expandedParameterBuilderPluginRegistry,resourceGroupingStrategyRegistry,operationModelsProviderPluginRegistry,defaultsProviderPluginRegistry,pathDecoratorRegistry,apiListingScannerPluginRegistry,relProviderPluginRegistry,linkDiscovererRegistry,entityLinksPluginRegistry Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'linkDiscoverers' defined in class path resource [org/springframework/hateoas/config/HateoasConfiguration.class]: Unsatisfied dependency expressed through method 'linkDiscoverers' parameter 0; …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.