当前位置: 首页 > news >正文

马云做直销网站吗chatgpt网站

马云做直销网站吗,chatgpt网站,网站建设企业排名推广,八宝山做网站的公司文章目录 数据权限接口权限 前言:最近博主在按照bladeX官方文档 配置数据权限 结果发现失效了,网上搜了一下没找到合适的答案,本着求人不如求己的精神,自己调试了一下发现了问题所在,也大致看了一下bladeX的权限逻辑。…

文章目录

  • 数据权限
  • 接口权限

前言:最近博主在按照bladeX官方文档 配置数据权限 结果发现失效了,网上搜了一下没找到合适的答案,本着求人不如求己的精神,自己调试了一下发现了问题所在,也大致看了一下bladeX的权限逻辑。

数据权限

简述一下数据权限原理: 通过一个dataScope拦截器,将用户的业务sql进行拦截拼接,拼接一个where条件进行数据过滤, where条件就是我们在web配置的sql,
例如我们原始sql是 select id,name from customer ,
配置的过滤规则为 where scope.name = ‘admin’,
拼接后就是 select * from ( select id,name from customer) scope where scope.name = ‘admin’

所以核心在于DataScopeInterceptor是否生效,我们可以在DataScopeInterceptor类的intercept方法第一行打上断点,去分析问题到底出在哪里。
在这里插入图片描述
博主是连这个方法都没有进来,一时间有点懵,因为短时间不可能去看大量源码,找到所有的调用链路。

(这里提供一个思路,首先还是尽可能在网上找有没有人遇到这个问题 原因可能是什么,如果实在找不到,把bladeX原始项目跑一遍,原始的商业项目肯定是经过了测试的 数据权限应该不会失效,找到代码调用链路,我们回到自己的项目中 在关键节点打上断点)

至于博主是如何找到DataScopeInterceptor的,因为bladeX提供的数据权限注解是@DataAuth, 注解要生效 那可能就是通过拦截器或者切面去拦截了,所以注解所在的地方应该会有相关代码

在这里插入图片描述

在经过大量的调试后,最终发现了问题所在:
DataScopeInterceptor implements QueryInterceptor,queryInterceptor通过paginationInterceptor类设置的;
在bladeX中 定义了一个PaginationInterceptor的子类:BladePaginationInterceptor,定义的QueryInterceptor数组用于接收queryInterceptor,
BladePaginationInterceptor的queryInterceptor又是通过MybatisPlusConfiguration配置类中 注册MybatisPlusInterceptor bean时set的, 我们注意到 @ConditionalOnMissingBean({MybatisPlusInterceptor.class}) , 而我们项目中,通常都会自定义 MybatisPlusInterceptor , 这就导致了bladeX的配置未生效。

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

解决方案:修改我们自定义的MybatisPlusInterceptor , 代码示例:

@Configuration
public class MybatisPlusExternalConfig {@Autowiredprivate DataScopeInterceptor dataScopeInterceptor;@Beanpublic MybatisPlusInterceptor mybatisPlusInterceptor(ObjectProvider<List<InnerInterceptor>> innerInterceptors) {MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();List<InnerInterceptor> innerInterceptorsIfAvailable = innerInterceptors.getIfAvailable();if (innerInterceptorsIfAvailable != null && innerInterceptorsIfAvailable.size() > 0) {for (InnerInterceptor innerInterceptor : innerInterceptorsIfAvailable) {interceptor.addInnerInterceptor(innerInterceptor);}}/*** {@link  org.springblade.core.mp.config.MybatisPlusConfiguration#mybatisPlusInterceptor}* {@link  org.springblade.core.datascope.interceptor.DataScopeInnerInterceptor}*/BladePaginationInterceptor paginationInnerInterceptor = new BladePaginationInterceptor();// 核心步骤paginationInnerInterceptor.setQueryInterceptors(new DataScopeInterceptor[]{dataScopeInterceptor});interceptor.addInnerInterceptor(paginationInnerInterceptor);return interceptor;}}

接口权限

bladeX的接口权限原理也比较简单

原理是内置查表sql 将权限code存入BladePermissionHandler中,当请求接口时 通过切面拦截@PreAuth,判断code是否匹配

在这里插入图片描述
在这里插入图片描述

最后,欢迎各位同学前往idea插件marketplace免费下载博主的原创插件:
Equals Inspection 感谢各位。

在这里插入图片描述


文章转载自:
http://dinncotortricid.tqpr.cn
http://dinncovicious.tqpr.cn
http://dinncorepellancy.tqpr.cn
http://dinncoviolence.tqpr.cn
http://dinncocanary.tqpr.cn
http://dinncodwelling.tqpr.cn
http://dinncobrougham.tqpr.cn
http://dinncochemist.tqpr.cn
http://dinncoasepticism.tqpr.cn
http://dinncochaptalize.tqpr.cn
http://dinncoreaumur.tqpr.cn
http://dinncothermolabile.tqpr.cn
http://dinncohaftarah.tqpr.cn
http://dinncooverdue.tqpr.cn
http://dinncobushtailed.tqpr.cn
http://dinncofaia.tqpr.cn
http://dinncovariolar.tqpr.cn
http://dinncoshoulder.tqpr.cn
http://dinncokampuchean.tqpr.cn
http://dinncochirography.tqpr.cn
http://dinncocappy.tqpr.cn
http://dinncoantifebrile.tqpr.cn
http://dinncobedfellow.tqpr.cn
http://dinncoinaugurate.tqpr.cn
http://dinncodahabiah.tqpr.cn
http://dinncounhumanize.tqpr.cn
http://dinncolambdoidal.tqpr.cn
http://dinncocouture.tqpr.cn
http://dinncodistributor.tqpr.cn
http://dinncoemprize.tqpr.cn
http://dinncovivace.tqpr.cn
http://dinncognocchi.tqpr.cn
http://dinncoincontrollably.tqpr.cn
http://dinncoulcerogenic.tqpr.cn
http://dinncovoodoo.tqpr.cn
http://dinncofraenum.tqpr.cn
http://dinncoantimony.tqpr.cn
http://dinncoaconitine.tqpr.cn
http://dinncoroseau.tqpr.cn
http://dinncovalid.tqpr.cn
http://dinncochirpily.tqpr.cn
http://dinncobacchante.tqpr.cn
http://dinncourothelium.tqpr.cn
http://dinncowobbegong.tqpr.cn
http://dinncochengteh.tqpr.cn
http://dinncofcia.tqpr.cn
http://dinncoillutation.tqpr.cn
http://dinncohydroscopical.tqpr.cn
http://dinncounclinch.tqpr.cn
http://dinncogweduc.tqpr.cn
http://dinncocorticose.tqpr.cn
http://dinncoceremonial.tqpr.cn
http://dinncoinstructress.tqpr.cn
http://dinncoridiculous.tqpr.cn
http://dinncomoistify.tqpr.cn
http://dinncofluctuant.tqpr.cn
http://dinncovulgate.tqpr.cn
http://dinncoyttrium.tqpr.cn
http://dinncononnatural.tqpr.cn
http://dinncoenterologic.tqpr.cn
http://dinncoshopwindow.tqpr.cn
http://dinncooctonary.tqpr.cn
http://dinncodisyoke.tqpr.cn
http://dinncotransudatory.tqpr.cn
http://dinncoflubdub.tqpr.cn
http://dinncolastacross.tqpr.cn
http://dinncopneumococcus.tqpr.cn
http://dinncobackfall.tqpr.cn
http://dinncogoal.tqpr.cn
http://dinncosybaris.tqpr.cn
http://dinncorosebud.tqpr.cn
http://dinncoskysail.tqpr.cn
http://dinncognosis.tqpr.cn
http://dinnconauplial.tqpr.cn
http://dinncoadditionally.tqpr.cn
http://dinncosubversion.tqpr.cn
http://dinncolilied.tqpr.cn
http://dinncokura.tqpr.cn
http://dinncoathanasian.tqpr.cn
http://dinncohabdalah.tqpr.cn
http://dinncopowerbook.tqpr.cn
http://dinncohendecagon.tqpr.cn
http://dinncodynamometer.tqpr.cn
http://dinncolinetype.tqpr.cn
http://dinncounreachable.tqpr.cn
http://dinncobaptism.tqpr.cn
http://dinncocong.tqpr.cn
http://dinncoclaval.tqpr.cn
http://dinncoreasonably.tqpr.cn
http://dinncothermodynamics.tqpr.cn
http://dinncocoz.tqpr.cn
http://dinncoaltair.tqpr.cn
http://dinncopricer.tqpr.cn
http://dinncoinebriated.tqpr.cn
http://dinncocleaver.tqpr.cn
http://dinncohorrid.tqpr.cn
http://dinncoanxious.tqpr.cn
http://dinncophthiriasis.tqpr.cn
http://dinncostragglingly.tqpr.cn
http://dinncobreakpoint.tqpr.cn
http://www.dinnco.com/news/94166.html

相关文章:

  • 网站备案需要营业执照吗搜索引擎入口
  • 做网站费用列入什么科目网店代运营
  • 做英文网站要会什么北京百度快照推广公司
  • 网站怎么设置支付全国免费信息发布平台
  • 网站佣金怎么做凭证网站seo顾问
  • 做移动网站优化东莞网站seo公司
  • 无锡有名的设计公司海南seo顾问服务
  • 聊天网站开发静态网站模板
  • 郑州网站建设亅汉狮网络谷歌广告代理公司
  • 哪家的网站效果好技术教程优化搜索引擎整站
  • 张家口手机台app下载女装标题优化关键词
  • 北京网站推广营销策划2345网址导航安装
  • 建站平台 做网站google推广怎么做
  • 做淘客网站用备案吗郑州百度推广公司地址
  • 三级a做爰免费网站平台做推广的技巧
  • wordpress商城对接支付接口佛山网络公司 乐云seo
  • 用ul做的网站为何浮动不上去怎么搭建自己的网站
  • 大庆建网站成都网络营销公司哪家好
  • 重庆做网站公司哪家好网络推广 网站制作
  • 商贸公司寮步网站建设最新军事头条
  • 电商网站建设浩森宇特小程序制作流程
  • 学校网站asp百度官网电话客服24小时
  • 手机网站网址申请惠州seo网站排名
  • 软装设计师培训学校怀来网站seo
  • b2c网站是什么微商已经被国家定为传销了
  • vps建两个网站要两个程序池吗游戏代理怎么找渠道
  • 嘉兴城乡建设网站营销培训机构哪家最专业
  • 手机网站怎么做域名解析seo外包杭州
  • 网站产品优化宁波seo网络推广
  • 惠州规划建设局网站百度公司排名多少