All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jeesuite.mybatis.core.InterceptorHandler Maven / Gradle / Ivy

package com.jeesuite.mybatis.core;

import org.apache.ibatis.plugin.Invocation;

import com.jeesuite.mybatis.plugin.JeesuiteMybatisPluginContext;

/**
 * mybatis插件拦截处理器接口
 * @description 
* @author vakin * @date 2015年12月7日 * @Copyright (c) 2015, jwww */ public interface InterceptorHandler { void start(JeesuiteMybatisPluginContext context); void close(); Object onInterceptor(Invocation invocation) throws Throwable; void onFinished(Invocation invocation,Object result); InterceptorType getInterceptorType(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy