文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

MyBatis拦截器怎么动态替换表名

2023-06-30 10:17

关注

本篇内容主要讲解“MyBatis拦截器怎么动态替换表名”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“MyBatis拦截器怎么动态替换表名”吧!

一、Mybatis Interceptor 拦截器接口和注解

简单的说就是mybatis在执行sql的时候,拦截目标方法并且在前后加上我们的业务逻辑。实际上就是加@Intercepts注解和实现org.apache.ibatis.plugin.Interceptor接口

@Intercepts(        @Signature(method = "query",                type = Executor.class,                args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class}        ))
public interface Interceptor {  //主要重写这个方法、实现我们的业务逻辑  Object intercept(Invocation invocation) throws Throwable;    //生成代理对象,可以在这里判断是否生成代理对象  Object plugin(Object target);    //如果我们拦截器需要用到一些变量参数,可以在这里读取  void setProperties(Properties properties);}

二、实现思路

成员变量变量类型说明
targetObject代理对象
methodMethod被拦截方法
argsObject[]被拦截方法执行所需的参数

三、代码实现

import org.apache.ibatis.executor.Executor;import org.apache.ibatis.mapping.BoundSql;import org.apache.ibatis.mapping.MappedStatement;import org.apache.ibatis.mapping.SqlSource;import org.apache.ibatis.plugin.*;import org.apache.ibatis.session.ResultHandler;import org.apache.ibatis.session.RowBounds;import java.util.*;//method = "query"拦截select方法、而method = "update"则能拦截insert、update、delete的方法@Intercepts({        @Signature(type = Executor.class, method = "query", args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class}),        @Signature(type = Executor.class, method = "update", args = {MappedStatement.class, Object.class})})public class ReplaceTableInterceptor implements Interceptor {    private final static Map<String,String> TABLE_MAP = new LinkedHashMap<>();    static {        //表名长的放前面,避免字符串匹配的时候先匹配替换子集        TABLE_MAP.put("t_game_partners","t_game_partners_test");//测试        TABLE_MAP.put("t_file_recycle","t_file_recycle_other");        TABLE_MAP.put("t_folder","t_folder_other");        TABLE_MAP.put("t_file","t_file_other");    }    @Override    public Object intercept(Invocation invocation) throws Throwable {        Object[] args = invocation.getArgs();        //获取MappedStatement对象        MappedStatement ms = (MappedStatement) args[0];        //获取传入sql语句的参数对象        Object parameterObject = args[1];        BoundSql boundSql = ms.getBoundSql(parameterObject);        //获取到拥有占位符的sql语句        String sql = boundSql.getSql();        System.out.println("拦截前sql :" + sql);                //判断是否需要替换表名        if(isReplaceTableName(sql)){            for(Map.Entry<String, String> entry : TABLE_MAP.entrySet()){                sql = sql.replace(entry.getKey(),entry.getValue());            }            System.out.println("拦截后sql :" + sql);                        //重新生成一个BoundSql对象            BoundSql bs = new BoundSql(ms.getConfiguration(),sql,boundSql.getParameterMappings(),parameterObject);                        //重新生成一个MappedStatement对象            MappedStatement newMs = copyMappedStatement(ms, new BoundSqlSqlSource(bs));                        //赋回给实际执行方法所需的参数中            args[0] = newMs;        }        return invocation.proceed();    }    @Override    public Object plugin(Object target) {        return Plugin.wrap(target, this);    }    @Override    public void setProperties(Properties properties) {    }        private boolean isReplaceTableName(String sql){        for(String tableName : TABLE_MAP.keySet()){            if(sql.contains(tableName)){                return true;            }        }        return false;    }        private MappedStatement copyMappedStatement (MappedStatement ms, SqlSource newSqlSource) {        MappedStatement.Builder builder = new MappedStatement.Builder(ms.getConfiguration(), ms.getId(), newSqlSource, ms.getSqlCommandType());        builder.resource(ms.getResource());        builder.fetchSize(ms.getFetchSize());        builder.statementType(ms.getStatementType());        builder.keyGenerator(ms.getKeyGenerator());        if (ms.getKeyProperties() != null && ms.getKeyProperties().length > 0) {            builder.keyProperty(String.join(",",ms.getKeyProperties()));        }        builder.timeout(ms.getTimeout());        builder.parameterMap(ms.getParameterMap());        builder.resultMaps(ms.getResultMaps());        builder.resultSetType(ms.getResultSetType());        builder.cache(ms.getCache());        builder.flushCacheRequired(ms.isFlushCacheRequired());        builder.useCache(ms.isUseCache());        return builder.build();    }        public static class BoundSqlSqlSource implements SqlSource {        private BoundSql boundSql;        public BoundSqlSqlSource(BoundSql boundSql) {            this.boundSql = boundSql;        }        @Override        public BoundSql getBoundSql(Object parameterObject) {            return boundSql;        }    }}

四、运行结果

MyBatis拦截器怎么动态替换表名

到此,相信大家对“MyBatis拦截器怎么动态替换表名”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯