美文网首页
SpringBoot整合Mybatis-Plus

SpringBoot整合Mybatis-Plus

作者: Laity_9c91 | 来源:发表于2021-10-21 09:04 被阅读0次
1、引入mybatis-plus的包
<dependency>
      <groupId>com.baomidou</groupId>
      <artifactId>mybatis-plus-boot-starter</artifactId>
      <version>3.4.2</version>
</dependency>
2、编写mapper层,继承mybatis-plus中的BaseMapper<T>接口
image.png
3、编写service层接口,继承IService<T>接口
image.png
4、编写service层接口的实现类,继承ServiceImpl类
image.png

springboot整合mybatsi-plus实现mapper层、service层完成。

相关文章

网友评论

      本文标题:SpringBoot整合Mybatis-Plus

      本文链接:https://www.haomeiwen.com/subject/mqcfaltx.html