mybatis的拦截器如何才能得到Connection?

自己写了个mybatis的拦截器,拦截方法注释如下:

@Intercepts(value = {

@Signature(type = Executor.class,

method = "update",

args = {MappedStatement.class,Object.class})
})

在这种方式下不知道如何才能得到Connection?我看到用prepare拦截的方式是可以得到的,就是update方式拦截网上都没找到怎么拿到Connection。
阅读 5.2k
1 个回答

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

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进