启动springboot项目时遇到的一个问题

The dependencies of some of the beans in the application context form a cycle:

   org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration
┌─────┐
|  dataSource defined in class path resource [com/weigu/config/DataSourceConfig.class]
↑     ↓
|  masterDataSource defined in class path resource [com/weigu/config/DataSourceConfig.class]
↑     ↓
|  org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker
└─────┘

导致这个问题的原因是:


    
    

引入了这个jar包导致的;

 

 

你可能感兴趣的:(启动springboot项目时遇到的一个问题)