本文以@Intercepts为基础,通过拦截器的方式拦截数据库操作包括query、insert、update、delete操作对数据的完整性保护。
@Intercepts是mybatis中的一个常用拦截器注解,表明当前对象是一个拦截器,当前类通过implements Interceptor实现Interceptor接口。
@Intercepts的配置是一个@Signature数组,@Signature用于声明要拦截的接口、方法和参数。
使用方式:
@Intercepts({
@Signature(type = Executor.class, method = "update", args = {MappedStatement.class, Object.class})
})
@Intercepts({
@Signature(type = Executor.class, method = "query", args = {MappedStatement.class, Object.class, RowBounds.class, ResultHandler.class})
})
上面其中method="update"代表的是:update包含insert、update、delete操作。
实现Interceptor接口,可以看到Interceptor接口包含三哥方法。
1、plugin 方法
plugin 方法是拦截器用于封装目标对象的,通过该方法我们可以返回目标对象本身,也可以返回一个它的代理。当返回的是代理的时候我们可以对其中的方法进行拦截来调用 intercept 方法,当然也可以调用其他方法,
2、 intercept 方法
intercept 方法就是要进行拦截的时候要执行的方法。
3、setProperties 方法
setProperties 方法是用于在 Mybatis 配置文件中指定一些属性的。
参考:Mybatis自定义拦截器 | 拙计 (gitee.io)