mybatis-plus报错Error creating bean with name ‘dataSourceScriptDatabaseInitializer‘

mybatisplus在本地做测试的时候,启动就报错:Error creating bean with name 'dataSourceScriptDatabaseInitializer' ..... Error creating bean with name 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties': Lookup method resolution failed;

我的pom文件



        
            org.postgresql
            postgresql
            42.2.20
        


        
            com.baomidou
            mybatis-plus-boot-starter
            3.5.1
        

        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            2.2.2
        

        
            org.projectlombok
            lombok
            1.18.20
        

        
        
            junit
            junit
            4.12
            test
        

        
            org.springframework.boot
            spring-boot-starter-test
            2.4.5
        

    

这里为什么报错呢?是因为jar包冲突问题,mybatis-plus-boot-starter  和 

mybatis-spring-boot-starter  版本有冲突,我上面贴的是正确的,我原来的mybatis-spring-boot-starter版本是2.2.0, 反正有冲突,改一下就好了,就没有报错了。

临时写的,比较潦草,如果解决了你的问题,别忘了点个赞哦,多谢!!!

你可能感兴趣的:(bug,mybatis,后端)