Spring整合MyBatisPlus

网友投稿 253 2022-09-24

Spring整合MyBatisPlus

1.添加MyBatisPlus依赖

com.baomidou mybatis-plus 3.2.0

特别说明: Mybatis及Mybatis-Spring 依赖请勿加入项目配置,以免引起版本冲突!!! Mybatis-Plus 会自动帮你维护!

2.集成 Mybatis-Plus

Mybatis-Plus 的集成非常简单,对于 Spring,我们仅仅需要把 Mybatis自带的 MybatisSqlSessionFactoryBean 替换为 MP 自带的即可。

3.修改Mapper

/** * @author bruceliu * @create 2019-09-23 14:43 * @description */public interface EmpMapper extends BaseMapper { public List getEmps(); public int addEmp(Emp emp);}

4.修改业务逻辑层

业务逻辑层接口:

/** * @author bruceliu * @create 2019-09-23 14:50 * @description */public interface EmpService extends IService {}

业务逻辑层实现类:

@Servicepublic class EmpServiceImpl extends ServiceImpl implements EmpService{ }

5.测试类

/** * @author bruceliu * @create 2019-09-23 14:51 * @description */@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration("classpath:applicationContext.xml")public class TestSpringMyBatis { @Autowired EmpService empService; public void testGetById(){ Emp emp = empService.getById(1); System.out.println(emp); }}

6.分页插件

com.baomidou.mybatisplus.plugins.PaginationInterceptor

配置分页插件:

或者:

测试分页插件:

@Test public void testPage(){ Page page = new Page(2,3); QueryWrapper wrapper=new QueryWrapper(); IPage p = empService.page(page, wrapper); System.out.println("===============获取分页相关的一些信息======================"); System.out.println("总条数:" +p.getTotal()); System.out.println("当前页码: "+ p.getCurrent()); System.out.println("总页码:" + p.getPages()); System.out.println("每页显示的条数:" + p.getSize()); List records = p.getRecords(); for (Emp record : records) { System.out.println(record); } }

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:海量可视化日志分析平台之ELK搭建-基础简介
下一篇:罗永浩做直播的公司要卖了?买主竟是家做电缆的上市公司!
相关文章

 发表评论

暂时没有评论,来抢沙发吧~