您好,登錄后才能下訂單哦!
idea怎么使用Mybatis逆向工程插件,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
添加連接的mysql
的信息,測試鏈接成功即可。
安裝成功后,在需要生成的表上右鍵選擇mybatis-generator。
添加要生成的一些配置。
點擊OK,第一次生成會彈出窗口,需要輸入數據庫的帳號密碼。可以看到生成該表對應的mapper接口、實體類和sql
。
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 {......}
在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); } }
運行結果:
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。