文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

idea使用Mybatis逆向工程插件详情

2024-04-02 19:55

关注

一、使用mybatis连接数据库

添加连接的mysql的信息,测试链接成功即可。

二、安装Better-Mybatis-Generator插件

安装成功后,在需要生成的表上右键选择mybatis-generator。

添加要生成的一些配置。

点击OK,第一次生成会弹出窗口,需要输入数据库的帐号密码。可以看到生成该表对应的mapper接口、实体类和sql

三、关于example类详解

1、example成员变量

mybatis-generator会为每个字段产生Criterion,为底层的mapper.xml创建动态sql。如果表的字段比较多,产生的example类会十分庞大。理论上通过example类可以构造你想到的任何筛选条件。

 //作用:升序还是降序
 //参数格式:字段+空格+asc(desc)
 protected String orderByClause;  
 //作用:去除重复
 //true是选择不重复记录,false,反之
 protected boolean distinct;
 //自定义查询条件
 //Criteria的集合,集合中对象是由or连接
 protected List<Criteria> oredCriteria;
 // 分页的显示条数
 private Integer limit;
 // 分页的起始下标   
 private Long offset;
 //内部类Criteria包含一个Cretiron的集合,
 //每一个Criteria对象内包含的Cretiron之间是由  AND连接的
 public static class Criteria extends GeneratedCriteria {
  protected Criteria() {super();}
 }
 //是mybatis中逆向工程中的代码模型
 protected abstract static class GeneratedCriteria {......}
 //是最基本,最底层的Where条件,用于字段级的筛选
 public static class Criterion {......}

2、example使用

在MybatisDemoApplicationTests类中进行测试:

package org.ywz.test;
 
import org.junit.jupiter.api.Test;
import org.junit.platform.commons.util.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.ywz.dao.StudentDao;
import org.ywz.pojo.Student;
import org.ywz.pojo.StudentExample;
 
import java.util.List;
 

@SpringBootTest
class MybatisDemoApplicationTests {
    @Autowired
    private StudentDao studentDao;
 
    @Test
    void contextLoads() {
        StudentExample studentExample = new StudentExample();
 
        // 查询数据的总条数 类似于:select count(*) from student
        long l = studentDao.countByExample(studentExample);
        System.out.println("---------------总条数----------------");
        System.out.println("数据库的总条数:" + l);
        System.out.println("----------------and条件---------------");
        // where条件查询或多条件查询
        Student student = new Student();
        student.setName("王五");
        student.setSex("男");
        selectAndCondition(student);
        System.out.println("---------------or条件----------------");
        selectOrCondition(student);
        System.out.println("-----------------模糊查询--------------");
        student.setName("王");
        selectLikeCondition(student);
        System.out.println("-----------------分页查询--------------");
        selectLimit();
    }
 
    
    private void selectAndCondition(Student student) {
        StudentExample studentExample = new StudentExample();
        StudentExample.Criteria criteria = studentExample.createCriteria();
        studentExample.setOrderByClause("score asc"); //升序
        studentExample.setDistinct(false); //不去重
        if (StringUtils.isNotBlank(student.getName())) {
            criteria.andNameEqualTo(student.getName());
        }
        if (StringUtils.isNotBlank(student.getSex())) {
            criteria.andSexEqualTo(student.getSex());
        }
        List<Student> students = studentDao.selectByExample(studentExample);
        students.forEach(System.out::println);
    }
 
    
    private void selectOrCondition(Student student) {
        StudentExample studentExample = new StudentExample();
        StudentExample.Criteria criteria1 = studentExample.createCriteria();
        StudentExample.Criteria criteria2 = studentExample.createCriteria();
        if (StringUtils.isNotBlank(student.getName())) {
            criteria1.andNameEqualTo(student.getName());
        }
        if (StringUtils.isNotBlank(student.getSex())) {
            criteria2.andSexEqualTo(student.getSex());
        }
        studentExample.or(criteria2);
        List<Student> students = studentDao.selectByExample(studentExample);
        students.forEach(System.out::println);
    }
 
    
    private void selectLikeCondition(Student student) {
        StudentExample studentExample = new StudentExample();
        StudentExample.Criteria criteria = studentExample.createCriteria();
        if (StringUtils.isNotBlank(student.getName())) {
            criteria.andNameLike("%" + student.getName() + "%");
        }
        List<Student> students = studentDao.selectByExample(studentExample);
        students.forEach(System.out::println);
    }
 
    
    public void selectLimit() {
        StudentExample studentExample = new StudentExample();
        studentExample.setOffset(2l);
        studentExample.setLimit(5);
        List<Student> students = studentDao.selectByExample(studentExample);
        students.forEach(System.out::println);
    }
}

运行结果:

 官方文档:MyBatis Generator Core – Example Class Usage Notes 

到此这篇关于idea使用Mybatis逆向工程插件详情的文章就介绍到这了,更多相关idea使用Mybatis逆向工程插件内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯