1. <!--mybatis相关依赖-->
    2. <dependency>
    3. <groupId>org.mybatis.spring.boot</groupId>
    4. <artifactId>mybatis-spring-boot-starter</artifactId>
    5. <version>2.2.0</version>
    6. </dependency>
    7. <!--mysql-->
    8. <dependency>
    9. <groupId>mysql</groupId>
    10. <artifactId>mysql-connector-java</artifactId>
    11. <version>8.0.26</version>
    12. </dependency>
    13. <!--druid-->
    14. <dependency>
    15. <groupId>com.alibaba</groupId>
    16. <artifactId>druid</artifactId>
    17. <version>1.1.10</version>
    18. </dependency>