【springboot|springboot整合Mybatis-Plus】1、导入依赖:
com.baomidou
mybatis-plus-boot-starter
3.4.3
2、使用:
在使用MyBatis的时候,我们需要手动写SQL语句,而使用MP之后,就不需要我们手动写了。
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.southwind.springboottest.entity.Book;
import org.apache.ibatis.annotations.Mapper;
//import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
//import java.util.List;
@Mapper
@Repository
public interface BookDao extends BaseMapper {
//@Select("select * from book where id=#{1}")
//Book getbyid(Integer id);
//
//
//@Select("select * from book")
//List getall();
}
通过源码我们可以发现,BaseMapper已经封装好了相应的方法。
文章图片
推荐阅读
- springboot|SpringBoot解决跨域问题
- 为什么 Redis 集群要使用反向代理? 看这篇就明白了
- java项目部署|Jenkins+Docker+Maven部署springboot项目
- 开发工具|SpringBoot + maven + Jenkins + docker 实现docker集群一键自动化部署
- spring|Docker+jenkins+gitee+springboot实现自动化部署流程(详细教程)(附下载工具地址)(1)
- spring|Docker+jenkins+gitee+springboot实现自动化部署流程(详细教程)(附下载工具地址)(2)
- jenkins|jenkins+docker+springboot自动化部署
- 个人笔记|Linux:docker+jenkins+gitee+springboot实现自动部署
- 单点登录|简单了解单点登录及实现方案