我有一个maven多模块java11项目。该项目配置了swagger 3
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>3.0.0</version>
</dependency>
一旦我在所有maven模块中添加spring上下文索引器作为依赖项,swaggerui就不再工作了
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-indexer</artifactId>
<version>5.2.2.RELEASE</version>
<optional>true</optional>
</dependency>
如果我从所有maven模块中删除spring上下文索引器依赖项,swagger ui就可以工作了。
如何解决这个问题(如果这很重要,我们将使用spring security)
1条答案
按热度按时间2ul0zpep1#
有时依赖项的最后一个版本可能与其他依赖项存在一些兼容性问题。尝试旧版本。