我在spring-boot应用程序中得到了对spring-boot数据jdbc项目的循环依赖,我不知道如何解决它。
┌─────┐
| jdbcConverter defined in class path resource [org/springframework/boot/autoconfigure/data/jdbc/JdbcRepositoriesAutoConfiguration$SpringBootJdbcConfiguration.class]
↑ ↓
| dataAccessStrategyBean defined in class path resource [org/springframework/boot/autoconfigure/data/jdbc/JdbcRepositoriesAutoConfiguration$SpringBootJdbcConfiguration.class]
└─────┘
这就是我使用的依赖关系
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jdbc</artifactId>
<version>1.1.12.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
<version>2.2.12.RELEASE</version>
</dependency>
除此之外,我没有使用任何其他自定义初始值设定项/beans/等。
我在配置中遗漏了什么吗?
暂无答案!
目前还没有任何答案,快来回答吧!