Хорошо, наконец-то у меня есть решение.Прежде всего, я обновил pom.xml последней загрузочной версией весны 2.1.1
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.1.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
Однако этого было недостаточно, поскольку я столкнулся с другой проблемой с моими репозиториями, подобной этой
*************************** APPLICATION FAILED TO START
***************************
Description:
The bean 'IDocumentRepository', defined in null, could not be registered. A bean with that name has already been defined in null and overriding is disabled.
Action:
Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
Затем я положил
spring.main.allow-bean-definition-overriding=true
в application.properties, и теперь он работает.