自己写了个mybatis的拦截器,拦截方法注释如下:
@Intercepts(value = {
@Signature(type = Executor.class,
method = "update",
args = {MappedStatement.class,Object.class})
})
在这种方式下不知道如何才能得到Connection?我看到用prepare拦截的方式是可以得到的,就是update方式拦截网上都没找到怎么拿到Connection。
自己写了个mybatis的拦截器,拦截方法注释如下:
@Intercepts(value = {
@Signature(type = Executor.class,
method = "update",
args = {MappedStatement.class,Object.class})
})
在这种方式下不知道如何才能得到Connection?我看到用prepare拦截的方式是可以得到的,就是update方式拦截网上都没找到怎么拿到Connection。
2 回答1.2k 阅读
1 回答548 阅读
mybatis只能拦截一下几个接口的方法
Executor (update, query, flushStatements, commit, rollback, getTransaction, close, isClosed)
ParameterHandler (getParameterObject, setParameters)
ResultSetHandler (handleResultSets, handleOutputParameters)
StatementHandler (prepare, parameterize, batch, update, query)
在以上方法中只有
StatementHandler#prepare()
可以得到connection