当前位置: 代码迷 >> Java Web开发 >> Mybatis 自定义 Plugin(Interceptor) 研讨! 急
  详细解决方案

Mybatis 自定义 Plugin(Interceptor) 研讨! 急

热度:8120   发布时间:2013-02-25 21:08:46.0
Mybatis 自定义 Plugin(Interceptor) 探讨!! 急!!!
我写了一个 mybatis 的 plugin, 可是只能拦截取到 query 和 update 方法的sql语句,而 insert 和 delete 的却没拦到,不知道怎么回事。我尝试过在注解里在加上 @Signature(method = "delete") 和 @Signature(method = "insert") ,可是这样却报错了,难不成只能拦截 query 和 update 的 ?  应该不会吧,可能是我没找到方法, 希望有这方面经验的人,指点迷津!


@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 LogInterceptor implements Interceptor {

private Properties properties;

public Object intercept(Invocation invocation) throws Throwable {
MappedStatement mappedStatement = (MappedStatement) invocation.getArgs()[0];
Object parameter = invocation.getArgs()[1];
mappedStatement.getSqlSource().getBoundSql(parameter);
BoundSql boundSql = mappedStatement.getBoundSql(parameter);

String sql = "";
if (boundSql != null && boundSql.getSql() != null && !"".equals(boundSql.getSql())) {
sql = boundSql.getSql();
}
System.out.println(sql);
return invocation.proceed();
}

public Object plugin(Object target) {
return Plugin.wrap(target, this);
}

public void setProperties(Properties properties) {
this.properties = properties;
}
}



快来人呀!!!来个同志啊,急需帮忙啊!!!Executor interface里面没有insert和delete method,看源码就知道了。但是这里的method=“update”已经包含了SQL 的insert/update/delete statement   难道就没有人用mybatis的吗? 擦 ,。。。。
  相关解决方案