1

在集成springdoc-openapi-data-rest库以将 Pageable(spring-date-commons) 对象映射到 Swagger UI 中的正确 URL-Parameter 后,我遇到了这个问题:

***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of method linkDiscoverers in org.springframework.hateoas.config.HateoasConfiguration required a single bean, but 3 were found:
    - relProviderPluginRegistry: defined by method 'relProviderPluginRegistry' in class path resource [org/springframework/hateoas/config/HateoasConfiguration.class]
    - linkDiscovererRegistry: defined in null
    - entityLinksPluginRegistry: defined by method 'entityLinksPluginRegistry' in class path resource [org/springframework/hateoas/config/WebMvcEntityLinksConfiguration.class]


Action:

Consider marking one of the beans as @Primary, updating the consumer to accept multiple beans, or using @Qualifier to identify the bean that should be consumed


Process finished with exit code 0

请问我怎样才能有效地解决这个问题?谢谢

4

1 回答 1

3

通过在 pom 文件中添加此依赖项来解决此问题:

<dependency>
    <groupId>org.springframework.hateoas</groupId>
    <artifactId>spring-hateoas</artifactId>
    <version>1.1.1.RELEASE</version>
</dependency>

这篇文章的启发

希望这可以帮助某人

于 2020-08-29T16:06:24.737 回答