关于springboot对应的各个版本

springboot版本为2.3.12RELEASE,它所对应的druid,mysql,mybatis版本都是多少?我的mybatis引用背景颜色变成黄色且让我更换logback-classic版本,我更换完之后又让更换core版本,这样更换了4个东西,感觉肯定不对,各位有没有知道使用那个版本的【目前我用的是最高版本的mybatis-spring-boot-starter】各位有知道的告诉我一声,谢谢

springboot版本为2.3.12RELEASE对应的如下版本我正在用,是可以的,如有帮助,请采纳


<dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!--MyBatis 及 插件依赖-->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.10</version>
        </dependency>
    
        <!--阿里 Druid Spring Boot Starter依赖-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>1.1.10</version>