91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

idea怎么使用Mybatis逆向工程插件

發布時間:2022-01-04 00:25:15 來源:億速云 閱讀:429 作者:柒染 欄目:開發技術

idea怎么使用Mybatis逆向工程插件,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。


一、使用mybatis連接數據庫

idea怎么使用Mybatis逆向工程插件

添加連接的mysql的信息,測試鏈接成功即可。

idea怎么使用Mybatis逆向工程插件

二、安裝Better-Mybatis-Generator插件

idea怎么使用Mybatis逆向工程插件

安裝成功后,在需要生成的表上右鍵選擇mybatis-generator。

idea怎么使用Mybatis逆向工程插件

添加要生成的一些配置。

idea怎么使用Mybatis逆向工程插件

點擊OK,第一次生成會彈出窗口,需要輸入數據庫的帳號密碼。可以看到生成該表對應的mapper接口、實體類和sql

idea怎么使用Mybatis逆向工程插件

三、關于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;
 
/**
 * Example類使用說明
 */
@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();
    }
 
    /**
     * where條件查詢或多條件查詢
     * 類似于:select * from student where name={#student.name} and sex={#student.sex} order by score asc;
     *
     * @param student
     */
    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);
    }
 
    /**
     * 類似于:select * from student where name={#student.name} or sex={#student.sex} ;
     *
     * @param student
     */
    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);
    }
 
    /**
     * 類似于:select * from student where name like %{#student.name}%
     *
     * @param student
     */
    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);
    }
 
    /**
     * 類似于:select * from student limit offset,limit
     */
    public void selectLimit() {
        StudentExample studentExample = new StudentExample();
        studentExample.setOffset(2l);
        studentExample.setLimit(5);
        List<Student> students = studentDao.selectByExample(studentExample);
        students.forEach(System.out::println);
    }
}

運行結果:

idea怎么使用Mybatis逆向工程插件

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

成都市| 得荣县| 通河县| 陇南市| 桦甸市| 搜索| 东乡| 丘北县| 团风县| 南平市| 丰镇市| 宾川县| 邹城市| 会昌县| 鄂托克前旗| 玉环县| 南充市| 连南| 鱼台县| 武义县| 麟游县| 浮山县| 旬阳县| 博湖县| 保德县| 石台县| 安达市| 普宁市| 漯河市| 四平市| 兴隆县| 山丹县| 惠东县| 公安县| 保定市| 城固县| 宣恩县| 察哈| 瑞金市| 工布江达县| 锦屏县|