Java vert.x spring boot Swigger集成

Java vert.x spring boot Swigger集成,java,spring,spring-boot,swagger,vert.x,Java,Spring,Spring Boot,Swagger,Vert.x,我正在尝试集成并运行SpringBootVert.x和swagger。 但我有例外 org.springframework.beans.factory.BeanDefinitionStoreException: Failed to process import candidates for configuration class [io.project.application.SpringConfig]; nested exception is java.lang.IllegalStateExc

我正在尝试集成并运行SpringBootVert.x和swagger。 但我有例外

org.springframework.beans.factory.BeanDefinitionStoreException: Failed to process import candidates for configuration class [io.project.application.SpringConfig]; nested exception is java.lang.IllegalStateException: Failed to introspect annotated methods on class org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport
    at org.springframework.context.annotation.ConfigurationClassParser.processImports(ConfigurationClassParser.java:616) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:299) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:245) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassParser.processImports(ConfigurationClassParser.java:606) ~[spring-context-4.3.12.RELEASE.jar:4.3.12.RELEASE]
    at 
项目地点在这里

我想使用spring运行vert.x,但也要集成swagger。 当我删除招摇过市的配置,它工作得很好。 有什么建议吗


谢谢

我已经手动完成了Swigger配置,通过注释删除了Spring/Swigger集成。工作完美


我想在Vert.X应用程序中实现Swagger UI。我已经列出了所有的路线,我想在Swigger ui中看到它们,就像在SpringBoot中一样。我也在swagger editor中手动编辑了它们。那么,如何从vert.x应用程序打开localhost:8080/swagger-ui.html,并在那里查看所有路由器。我读到我需要从swagger编辑器保存json并将其放入src/resources中。那之后呢?你能帮我实现它吗?按照这个结构,你应该手动编写你的swagger json或生成探索这个项目。我已经手动编辑了json。那之后呢?我应该在某个路线打开它吗?如果是,如何制作?