根據多個字段聯合主鍵增刪改查br/>原生mybatisplus只支持一個主鍵,mpp支持多個字段聯合主鍵增刪改查,mapper須要繼承MppBaseMapper<br>
實體類中聯合主鍵的字段須要用@MppMultiId註解修飾<br>
若是須要在service使用多主鍵相關操做,能夠直接繼承IMppService接口<br>java
優化分頁插件實如今不分頁時進行排序操做
原生mybatisplus分頁與排序是綁定的,mpp優化了分頁插件,使用MppPaginationInterceptor插件<br>
在不分頁的狀況下支持排序操做<br>
page參數size設置爲-1可實現不分頁取全量數據,同時設置OrderItem能夠實現排序<br>git
自動填充優化功能 & 自動掃描Entity類構建ResultMap功能
原生mybatisplus只能作%s+1和now兩種填充,mybatisplus-plus在插入或更新時對指定字段進行自定義複雜sql填充。<br>
須要在實體類字段上用原生註解@TableField設置fill=FieldFill.INSERT fill=FieldFill.UPDATE或fill=FieldFill.INSERT_UPDATE不然不會觸發自定義填充<br>br/>mybatisplus-plus使用@InsertFill註解觸發插入時,執行註解中自定義的sql填充實體類字段<br>
mybatisplus-plus使用@UpdateFill註解觸發更新時,執行註解中自定義的sql填充實體類字段<br>br/>還能夠自動填充主鍵字段,解決原生mybatisplus不支持多個主鍵的問題<br>
使用ColNameUtil.pn靜態方法,獲取實體類中讀取方法對應的列名稱<br>
<br>
在xml中編寫resultmap是件頭痛的事,特別是錶鏈接時返回的對象是多樣的,若是不按照map返回,分別建resultmap工做量會翻倍。<br>
使用@AutoMap註解entity實體類,就能夠在應用啓動時解析使用@TableField註解的字段,自動生成scan.mybatis-plus_xxxx爲id的resultMap<br>
能夠在xml中直接配置使用這個resultMap實例<br>
而且還支持繼承關係,掃描實體子類會附加上父類的字段信息一塊兒構建子類的resultmap<br>
對於各類錶鏈接造成的返回實體對象,能夠經過繼承來生成。經過掃描後自動構建各類resultmap,在xml中引用。<br>
<br>
作連表查詢時,輸入參數每每不是單一的實體類,而是採用更靈活的Map對象,<br>
但map中key參數的名稱定義過於隨便,可使用接口定義常量。但原生mybatis在xml中調用靜態類方法和變量時須要填寫完整的包名不利於大量採用<br>
是否能夠像在mybatisplus中使用lambda表達式翻譯entity中的列名稱<br>
mpp作了封裝支持xml的ognl中引入默認包名,並支持lambda定義列名稱<br>
例如xml使用如下語句引入map參數中create_time
原生方式<br>github
#{create_time}
mpp的默認包名引用接口常量方式<br>
配置文件中mpp.utilBasePath可設置ognl默認包名<br>sql
#{${@ColInfo@createTime}}
mpp的lambda方式<br>mybatis
#{${@MPP@col("TestEntity::getCreateTime")}}
從中央庫引入jarapp
<dependency> <groupId>com.github.jeffreyning</groupId> <artifactId>mybatisplus-plus</artifactId> <version>1.3.1-RELEASE</version> </dependency>
在實體類字段上設置@InsertFill,在插入時對seqno字段自動填充複雜計算值
查詢當前最大的seqno值並加3,轉換成10位字符串,不夠位數時用0填充ide
@TableField(value="seqno",fill=FieldFill.INSERT ) @InsertFill("select lpad(max(seqno)+3,10,'0') from test") private String seqno;
在實體類上設置@KeySequence,在插入時對id字段自動填充複雜計算值優化
@KeySequence("select lpad(max(seqno)+3,10,'0') from test") @TableName(value = "test") public class TestEntity { @TableId(value = "id", type=IdType.INPUT) private Integer id;
在實體類字段上設置@InsertFill @UpdateFill,插入和更新時使用當前時間填充this
@InsertFill("select now()") @UpdateFill("select now()") @TableField(value="update_time",fill=FieldFill.INSERT_UPDATE) private Date updateTime;
在啓動類中使用@EnableMPP啓動擴展自定義填充功能和自動建立resultmap功能br/>**在啓動類中使用@EnableKeyGen啓動主鍵自定義主鍵填充功能**
注意若是本身實現了IKeyGenerator會與@EnableKeyGen衝突spa
@SpringBootApplication @EnableMPP @EnableKeyGen public class PlusDemoApplication { public static void main(String[] args) { SpringApplication.run(PlusDemoApplication.class, args); } }
在實體類上使用@AutoMap註解br/>JoinEntity是TestEntity的子類
@TableName(autoResultMap=true)
autoResultMap必須設置爲truebr/>父類能夠不加@AutoMap,父類設置autoResultMap=true時mybatisplus負責生成resultmap
但原生mybatisplus生成的resultmap的id爲mybatis-plus_xxxx沒有scan.前綴
@AutoMap @TableName(autoResultMap=true) public class JoinEntity extends TestEntity{ @TableField("some2") private String some2; public String getSome2() { return some2; } public void setSome2(String some2) { this.some2 = some2; } @Override public String toString() { return "JoinEntity{" + "some2='" + some2 + '\'' + '}'; } }
配置文件中加入掃描entity路徑,多個路徑用逗號分隔
mpp: entityBasePath: com.github.jeffreyning.mybatisplus.demo.entity
配置文件中加入ognl執行java靜態方法的類加載默認路徑,多個路徑用逗號分隔
mpp: utilBasePath: com.github.jeffreyning.mybatisplus.demo.common
xml文件中引入自動生成的resultMap & xml中使用省略包名調用靜態方法 & @MPP@col經過entity的lambda表達式翻譯列名
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.github.jeffreyning.mybatisplus.demo.mapper.TestMapper"> <select id="queryUseRM" resultMap="scan.mybatis-plus_JoinEntity"> select * from test inner join test2 on test.id=test2.refid </select> <select id="queryUse" resultMap="scan.mybatis-plus_JoinEntity"> select * from test inner join test2 on test.id=test2.refid where test.create_time <![CDATA[ <= ]]> #{${@MPP@col("TestEntity::getCreateTime")}} and test.id=#{${@MPP@col("TestEntity::getId")}} and update_time <![CDATA[ <= ]]> #{${@ColInfo@updateTime}} </select> </mapper>
接口直接返回實例類
@Mapper public interface TestMapper extends BaseMapper<TestEntity> { public List<JoinEntity> queryUseRM(); public List<JoinEntity> queryUse(Map param); }
使用ColNameUtil.pn靜態方法,獲取實體類中讀取方法對應的列名稱
System.out.println(ColNameUtil.pn(TestEntity::getCreateTime)); System.out.println(ColNameUtil.pn(TestEntity::getId)); System.out.println(ColNameUtil.pn(JoinEntity::getSome2)); System.out.println(ColNameUtil.pn(JoinEntity::getUpdateTime));
根據多個字段聯合主鍵增刪改查
在實例類成員變量上使用@MppMultiId代表聯合主鍵
@TableName("test07") public class Test07Entity { @MppMultiId @TableField(value = "k1") private Integer k1; @MppMultiId @TableField(value = "k2") private String k2; @TableField(value = "col1") private String col1; @TableField(value = "col2") private String col2;
mapper須要繼承MppBaseMapper
@Mapper public interface Test07Mapper extends MppBaseMapper<Test07Entity> { }
根據多主鍵增刪改查
public void testMultiId(){ //id Test07Entity idEntity=new Test07Entity(); idEntity.setK1(1); idEntity.setK2("111"); //del test07Mapper.deleteByMultiId(idEntity); //add test07Mapper.insert(idEntity); //query Test07Entity retEntity=test07Mapper.selectByMultiId(idEntity); retEntity.setCol1("xxxx"); //update test07Mapper.updateByMultiId(retEntity); }
service層繼承IMppService
public interface Test07Service extends IMppService<Test07Entity> { } @Service public class Test07ServiceImpl extends ServiceImpl<Test07Mapper, Test07Entity> implements Test07Service { }
在service層調用多主鍵操做
public void testMultiIdService(){ //id Test07Entity idEntity=new Test07Entity(); idEntity.setK1(1); idEntity.setK2("111"); //del test07Service.deleteByMultiId(idEntity); //add test07Service.save(idEntity); //query Test07Entity retEntity=test07Service.selectByMultiId(idEntity); retEntity.setCol1("xxxx"); //update test07Mapper.updateByMultiId(retEntity); }
優化分頁插件實如今不分頁時進行排序操做
使用MppPaginationInterceptor插件
@Bean public PaginationInterceptor paginationInterceptor() { return new MppPaginationInterceptor(); }
mapper中按照通常分頁接口定義,同時支持返回值爲list或page對象的寫法
@Mapper public interface TestMapper extends BaseMapper<TestEntity> { public List<JoinEntity> queryUseRM(Page page); }
page參數設置size=-1爲全量查詢,size>0時正常分頁,設置OrderItem進行不管是否分頁都實現排序
public void testOrder(){ Page page=new Page(); page.setSize(-1); page.addOrder(new OrderItem().setColumn("test.id").setAsc(true)); page.addOrder(new OrderItem().setColumn("test2.some2").setAsc(true)); List rp=testMapper.queryUseRM(page); }
demo下載
mybatisplus-plus 1.3.0 示例工程下載地址
連接:https://pan.baidu.com/s/1wyMBHS4ke_oLEEYOld6-jQ
掃描訂閱公衆號,回覆"plus"獲取下載密碼