ElasticSearch學習八 ik分詞器
mybatisplus只支援一個主鍵
mpp支援多個欄位聯合主鍵增刪改查,mapper需要繼承MppBaseMapper
實體類中聯合主鍵的欄位需要用@MppMultiId註解修飾
如果需要在service使用多主鍵相關操作,可以直接繼承IMppService介面
mybatisplus分頁與排序是繫結的
mpp優化了分頁外掛,使用MppPaginationInterceptor外掛
在不分頁的情況下支援排序操作
page引數size設定為-1可實現不分頁取全量資料,同時設定OrderItem可以實現排序
mybatisplus只能做%s+1和now兩種填充
mybatisplus-plus在插入或更新時對指定欄位進行自定義複雜sql填充。
需要在實體類欄位上用原生註解@TableField設定fill=FieldFill.INSERT fill=FieldFill.UPDATE或fill=FieldFill.INSERT_UPDATE否則不會觸發自定義填充
mybatisplus-plus使用@InsertFill註解觸發插入時,執行註解中自定義的sql填充實體類欄位
mybatisplus-plus使用@UpdateFill註解觸發更新時,執行註解中自定義的sql填充實體類欄位
還可以自動填充主鍵欄位,解決原生mybatisplus不支援多個主鍵的問題
使用ColNameUtil.pn靜態方法,獲取實體類中讀取方法對應的列名稱
在xml中編寫resultmap是件頭痛的事,特別是表連線時返回的物件是多樣的,如果不按照map返回,分別建resultmap工作量會翻倍。
使用@AutoMap註解entity實體類,就可以在應用啟動時解析使用@TableField註解的欄位,自動生成scan.mybatis-plus_xxxx為id的resultMap
可以在xml中直接配置使用這個resultMap例項
並且還支援繼承關係,掃描實體子類會附加上父類的欄位資訊一起構建子類的resultmap
對於各種表連線形成的返回實體物件,可以通過繼承來生成。通過掃描後自動構建各種resultmap,在xml中引用。
做連表查詢時,輸入引數往往不是單一的實體類,而是採用更靈活的Map物件,
但map中key引數的名稱定義過於隨便,可以使用介面定義常量。但原生mybatis在xml中呼叫靜態類方法和變數時需要填寫完整的包名不利於大量採用
是否可以像在mybatisplus中使用lambda表示式翻譯entity中的列名稱
mpp做了封裝支援xml的ognl中引入預設包名,並支援lambda定義列名稱
例如xml使用以下語句引入map引數中create_time 原生方式
#{create_time}
mpp的預設包名引用介面常量方式
配置檔案中mpp.utilBasePath可設定ognl預設包名
#{${@ColInfo@createTime}}
mpp的lambda方式
#{${@MPP@col("TestEntity::getCreateTime")}}
從中央庫引入jar
<dependency>
<groupId>com.github.jeffreyning</groupId>
<artifactId>mybatisplus-plus</artifactId>
<version>1.5.0-RELEASE</version>
</dependency>
在實體類欄位上設定@InsertFill,在插入時對seqno欄位自動填充複雜計算值 查詢當前最大的seqno值並加3,轉換成10位字串,不夠位數時用0填充
@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,插入和更新時使用當前時間填充
@InsertFill("select now()")
@UpdateFill("select now()")
@TableField(value="update_time",fill=FieldFill.INSERT_UPDATE)
private Date updateTime;
在啟動類中使用@EnableMPP啟動擴充套件自定義填充功能和自動建立resultmap功能 在啟動類中使用@EnableKeyGen啟動主鍵自定義主鍵填充功能 注意如果自己實現了IKeyGenerator會與@EnableKeyGen衝突
@SpringBootApplication
@EnableMPP
@EnableKeyGen
public class PlusDemoApplication {
public static void main(String[] args) {
SpringApplication.run(PlusDemoApplication.class, args);
}
}
在實體類上使用@AutoMap註解 JoinEntity是TestEntity的子類 @TableName(autoResultMap=true) autoResultMap必須設定為true 父類可以不加@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介面和MppServiceImpl
public interface Test07Service extends IMppService<Test07Entity> {
}
public class Test07ServiceImpl extends MppServiceImpl<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);
}
service層根據複合主鍵進行批量操作和saveOrUpdate操作
@Test
public void testSaveOrUpdateByMultiIdService(){
//id
Test07Entity idEntity=new Test07Entity();
idEntity.setK1(6);
idEntity.setK2("666");
//del
test07Service.deleteByMultiId(idEntity);
//add
test07Service.saveOrUpdateByMultiId(idEntity);
//update
idEntity.setCol1("ccccc");
test07Service.saveOrUpdateByMultiId(idEntity);
}
@Test
public void testSaveOrUpdateBatchByMultiIdService(){
//ids
List<Test07Entity> entityList=new ArrayList<Test07Entity>();
for(int i=10;i<30;i++){
Test07Entity idEntity=new Test07Entity();
idEntity.setK1(i);
idEntity.setK2(String.valueOf(i*10));
entityList.add(idEntity);
}
//del
for(Test07Entity idEntity:entityList) {
test07Service.deleteByMultiId(idEntity);
}
//add batch
test07Service.saveOrUpdateBatchByMultiId(entityList);
//del
for(Test07Entity idEntity:entityList) {
idEntity.setCol1(new Date().toString());
}
//update batch
test07Service.saveOrUpdateBatchByMultiId(entityList);
}
@Test
public void testUpdateBatchByMultiIdService(){
//ids
List<Test07Entity> entityList=new ArrayList<Test07Entity>();
for(int i=50;i<80;i++){
Test07Entity idEntity=new Test07Entity();
idEntity.setK1(i);
idEntity.setK2(String.valueOf(i*10));
entityList.add(idEntity);
}
//del
for(Test07Entity idEntity:entityList) {
test07Service.deleteByMultiId(idEntity);
}
//add batch
test07Service.saveOrUpdateBatchByMultiId(entityList);
//del
for(Test07Entity idEntity:entityList) {
idEntity.setCol1(new Date().toString());
}
//update batch
test07Service.updateBatchByMultiId(entityList);
}
優化分頁外掛實現在不分頁時進行排序操作 使用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);
}
————————————————
版權宣告:本文為CSDN博主「thethefighter」的原創文章,遵循CC 4.0 BY-SA版權協議
原文連結:https://blog.csdn.net/thethefighter/article/details/112170131