คำถามติดแท็ก springfox

10
วิธีกำหนดค่า Spring Security เพื่อให้สามารถเข้าถึง Swagger URL ได้โดยไม่ต้องตรวจสอบสิทธิ์
โครงการของฉันมี Spring Security ปัญหาหลัก: ไม่สามารถเข้าถึง URL ผยองที่http: // localhost: 8080 / API / v2 / API-เอกสาร มันขึ้นว่า Missing or invalid Authorization header ภาพหน้าจอของหน้าต่างเบราว์เซอร์ My 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 …

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 …

2
ทางเลือกอื่น ๆ ของ Springfox?
สองปีที่แล้วฉันทำงานกับ Spring Boot Applications กับ Springfox Springfox สร้างเอกสารและ Test UI สำหรับ REST API ของคุณ มันยอดเยี่ยมมาก แต่จริงๆแล้วโครงการ Springfox นั้นตายแล้วและไม่สนับสนุน Spring ตัวใหม่ ฉันมีสามคำถาม มีวิธีอื่นในการสร้าง Swagger UI โดยตรงหรือไม่ ห้องสมุด / โครงการอื่น ๆ คุณจะใช้ Swagger ui ในโครงการ Spring Boot ได้อย่างไร บางทีฉันอาจจะล้าสมัยไปแล้วมีทางเลือกอื่นที่ดีกว่านี้สำหรับพนักงานที่ทำงานใน Spring Boot หรือไม่? อัปเดต หลังจากหลายเดือนของการใช้งานหนักและการทดสอบของ SpringDoc OpenApi ฉันจะบอกว่านั่นไม่ใช่ทางเลือกของ springfox มันเป็นสิ่งที่ดีกว่ามาก! เสถียรใช้งานง่ายและทันสมัย! ฉันขอแนะนำได้ 100%! …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.