• 技术文章 >Java >java教程

    mybatis拦截器

    (*-*)浩(*-*)浩2019-09-03 16:41:13转载994
    拦截器的一个作用就是我们可以拦截某些方法的调用,我们可以选择在这些被拦截的方法执行前后加上某些逻辑,或者丢弃这些被拦截的方法而执行自己的逻辑。

    php入门到就业线上直播课:进入学习

    如对于mybatis的Executor,有几种实现:BatchExecutor,ReuseExecutor、SimpleExecutor和CachingExecutor,当这几种Executor接口的query方法无法满足我们的要求的时候,我们就可以建立一个拦截器来实现自己的query方法;拦截器一般采用aop动态实现。

    拦截器原理

    对于mybatis,我们可以通过interceptor接口定义自己的拦截器。interceptor接口定义:

    package org.apache.ibatis.plugin;
    import java.util.Properties; 
    public interface Interceptor { 
        Object intercept(Invocation invocation) throws Throwable; 
        Object plugin(Object target);
        void setProperties(Properties properties);
    }

    plugin方法主要是用于封装目标对象,通过该方法我们可以决定是否要进行拦截进而决定返回什么样的目标对象。

    intercept方法就是要进行拦截的时候执行的方法。setProperties主要用于在配置文件中指定属性,这个方法在Configuration初始化当前的Interceptor时就会执行.在mybatis中有一个plugin类,该类包括静态方法wrap,通过该方法可以决定需要返回的对象是目标对象还是代理。

    package org.apache.ibatis.plugin;
     
    import java.lang.reflect.InvocationHandler;
    import java.lang.reflect.Method;
    import java.lang.reflect.Proxy;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Map;
    import java.util.Set;
    import org.apache.ibatis.reflection.ExceptionUtil;
     
    public class Plugin implements InvocationHandler {
     
        private Object target;
        private Interceptor interceptor;
        private Map<Class<?>, Set<Method>> signatureMap;
     
        private Plugin(Object target, Interceptor interceptor, Map<Class<?>, Set<Method>> signatureMap) {
            this.target = target;
            this.interceptor = interceptor;
            this.signatureMap = signatureMap;
        }
     
        public static Object wrap(Object target, Interceptor interceptor) {
            //解析获取需要拦截的类以及方法{*}
            Map<Class<?>, Set<Method>> signatureMap = getSignatureMap(interceptor);
            Class<?> type = target.getClass();
            //解析type是否存在需要拦截的接口{*}
            Class<?>[] interfaces = getAllInterfaces(type, signatureMap);
            //决定返回的对象是否为代理{*}
            if (interfaces.length > 0) {
                return Proxy.newProxyInstance(
                    type.getClassLoader(),
                    interfaces,
                    new Plugin(target, interceptor, signatureMap));
            }
            //返回原目标对象
            return target;
        }
     
        public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
            try {
                Set<Method> methods = signatureMap.get(method.getDeclaringClass());
                //如果当前执行的方法是定义的需要拦截的方法,则把目标对象,要拦截的方法以及参数封装为一个Invocation对象传递给拦截器方法intercept;
                //Invocation中定义了定义了一个proceed方法,其逻辑就是调用当前方法,所以如果在intercept中需要继续调用当前方法的话可以调用invocation的procced方法;
                if (methods != null && methods.contains(method)) {
                    return interceptor.intercept(new Invocation(target, method, args));
                }
                return method.invoke(target, args);
            } catch (Exception e) {
                throw ExceptionUtil.unwrapThrowable(e);
            }
        }
     
        //根据注解解析需要拦截的方法
        //两个重要的注解:@Intercepts以及其值其值@Signature(一个数组)
        //@Intercepts用于表明当前的对象是一个Interceptor
        //@Signature则表明要拦截的接口、方法以及对应的参数类型。
        private static Map<Class<?>, Set<Method>> getSignatureMap(Interceptor interceptor) {
            Intercepts interceptsAnnotation = interceptor.getClass().getAnnotation(Intercepts.class);
            if (interceptsAnnotation == null) { // issue #251
                throw new PluginException("No @Intercepts annotation was found in interceptor " + interceptor.getClass().getName());
            }
            Signature[] sigs = interceptsAnnotation.value();
            Map<Class<?>, Set<Method>> signatureMap = new HashMap<Class<?>, Set<Method>>();
            for (Signature sig : sigs) {
                Set<Method> methods = signatureMap.get(sig.type());
                if (methods == null) {
                    methods = new HashSet<Method>();
                    signatureMap.put(sig.type(), methods);
                }
                try {
                    Method method = sig.type().getMethod(sig.method(), sig.args());
                    methods.add(method);
                } catch (NoSuchMethodException e) {
                    throw new PluginException("Could not find method on " + sig.type() + " named " + sig.method() + ". Cause: " + e, e);
                }
            }
            return signatureMap;
        }
     
        private static Class<?>[] getAllInterfaces(Class<?> type, Map<Class<?>, Set<Method>>  signatureMap) {
            Set<Class<?>> interfaces = new HashSet<Class<?>>();
            while (type != null) {
                for (Class<?> c : type.getInterfaces()) {
                    if (signatureMap.containsKey(c)) {
                        interfaces.add(c);
                    }
                }
                type = type.getSuperclass();
            }
            return interfaces.toArray(new Class<?>[interfaces.size()]);
        }
    }

    拦截器实例

    package com.mybatis.interceptor;
     
    import java.sql.Connection;
    import java.util.Properties;
     
    import org.apache.ibatis.executor.Executor;
    import org.apache.ibatis.executor.statement.StatementHandler;
    import org.apache.ibatis.mapping.MappedStatement;
    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 org.apache.ibatis.session.ResultHandler;
    import org.apache.ibatis.session.RowBounds;
     
    @Intercepts( {
    @Signature(method = "query", type = Executor.class, args = {
    MappedStatement.class, Object.class, RowBounds.class,
    ResultHandler.class })}) 
    public class TestInterceptor implements Interceptor {
        public Object intercept(Invocation invocation) throws Throwable {
            Object result = invocation.proceed();
            return result;
        }
     
        public Object plugin(Object target) {
            return Plugin.wrap(target, this);
        }
     
        public void setProperties(Properties properties) {
            String p = properties.getProperty("property");
        }
    }

    首先用@Intercepts标记了这是一个Interceptor,通过@Signatrue设计拦截点:拦截Executor接口中参数类型为MappedStatement、Object、RowBounds和ResultHandler的query方法;intercept方法调用invocation的proceed方法,使当前方法正常调用。

    拦截器的注册

    注册拦截器是通过在Mybatis配置文件中plugins元素下的plugin元素来进行的,Mybatis在注册定义的拦截器时会先把对应拦截器下面的所有property通过Interceptor的setProperties方法注入。如:

    <plugins>
        <plugin interceptor="com.mybatis.interceptor.TestInterceptor">
            <property name="property" value="拦截器配置"/>
        </plugin>
    </plugins>

    以上就是mybatis拦截器的详细内容,更多请关注php中文网其它相关文章!

    声明:本文转载于:CSDN,如有侵犯,请联系admin@php.cn删除

    前端(VUE)零基础到就业课程:点击学习

    清晰的学习路线+老师随时辅导答疑

    自己动手写 PHP MVC 框架:点击学习

    快速了解MVC架构、了解框架底层运行原理

    专题推荐:java
    上一篇:java相对php的优势有哪些 下一篇:自己动手写 PHP MVC 框架(40节精讲/巨细/新人进阶必看)

    相关文章推荐

    • ❤️‍🔥共22门课程,总价3725元,会员免费学• ❤️‍🔥接口自动化测试不想写代码?• spring事务隔离级别、传播行为以及spring+mybatis+atomikos实现分布式事务管理• springboot中mybatis注解形式的介绍(代码)• Mybatis映射文件的详解• mybatis反向工程的介绍(代码示例)
    1/1

    PHP中文网