spingboot集成mybatis-plus

mybatis-plus集成spingboot
1.引包:

<dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
     <groupId>com.baomidou</groupId>
     <artifactId>mybatis-plus-boot-starter</artifactId>
     <version>3.4.3</version>
</dependency>
<dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-web</artifactId>
</dependency>

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述


版权声明:本文为qq_37256896原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。