赞
踩
@SqlParser 注解在多租户的模式下,用来过滤的注解,在最新的 Mybatis Plus 中这个 @SqlParser1 注解已经过时。
替代注解
当我们的需要过滤多租户,我们就需要用 @InterceptorIgnore(tenantLine = “1”) 注解来代替。
官方文档关于注解的说明:
see @InterceptorIgnore
链接:https://mp.baomidou.com/guide/annotation.html#enumvalue
拦截忽略注解 @InterceptorIgnore
该注解作用于 xxMapper.java 方法之上 各属性代表对应的插件 各属性不给值则默认为 false 设置为 true 忽略拦截 更多说明详见源码注释
@SqlParser(filter = true) 与 @InterceptorIgnore(tenantLine = “1”) 等价
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。