liurunyu
2023-11-04 df37487916ebc1ff8d8e0f8b088c5b6af1e582ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.dy.common.mybatis;
 
 
import com.dy.common.po.BaseEntity;
import com.dy.common.util.IDLongGenerator;
import org.apache.ibatis.executor.Executor;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.mapping.SqlCommandType;
import org.apache.ibatis.plugin.Interceptor;
import org.apache.ibatis.plugin.Intercepts;
import org.apache.ibatis.plugin.Invocation;
import org.apache.ibatis.plugin.Plugin;
import org.apache.ibatis.plugin.Signature;
 
import java.lang.reflect.Method;
 
@Intercepts(
    {
        @Signature(
            type = Executor.class,
            method = "update",
            args = { MappedStatement.class, Object.class }
        )
    }
)
public class AutoGenerateIdInterceptor implements Interceptor {
 
    static int MAPPED_STATEMENT_INDEX = 0;
    static int PARAMETER_INDEX = 1;
    static int ROWBOUNDS_INDEX = 2;
    static int RESULT_HANDLER_INDEX = 3;
    static String BASE_FIELD_SET_PRIMARY_KEY_FUNTION_NAME = "setId";
    static String BASE_FIELD_SET_CREATE_TIME_FUNTION_NAME = "setCreateDt";
    static String BASE_FIELD_SET_UPDATE_TIME_FUNTION_NAME = "setUpdateDt";
    static String BASE_FIELD_SET_DELETE_FUNTION_NAME = "setDelete";
 
    public AutoGenerateIdInterceptor() {
        //System.out.println("auto generate primaryKey mybatis plugin start!!!");
    }
 
    @SuppressWarnings("static-access")
    public Object intercept(Invocation invocation) throws Throwable {
        MappedStatement mappedStatement = (MappedStatement) invocation.getArgs()[MAPPED_STATEMENT_INDEX];
        SqlCommandType commandType = mappedStatement.getSqlCommandType();
        if (commandType.INSERT.equals(SqlCommandType.INSERT)) {
            Object entity = invocation.getArgs()[PARAMETER_INDEX];
            if (entity instanceof BaseEntity) {
                Class<? extends Object> entityClass = entity.getClass();
                Method setMt = entityClass.getMethod(BASE_FIELD_SET_PRIMARY_KEY_FUNTION_NAME, Long.class) ;
                if(setMt != null){
                    setMt.invoke(entity, new IDLongGenerator().generate());
                }
                invocation.getArgs()[PARAMETER_INDEX] = entity;
            }
        }
        return invocation.proceed();
    }
 
    public Object plugin(Object target) {
        return Plugin.wrap(target, this);
    }
 
}