Your Name
2023-09-06 ac1f88e588dd272551a9f8ea4e24257dc6a43fff
springboot/src/main/java/com/java110/boot/configuration/ServiceConfiguration.java
@@ -14,6 +14,7 @@
    public FilterRegistrationBean jwtFilter() {
        StringBuffer exclusions = new StringBuffer();
        exclusions.append("/callComponent/login/*,");
        exclusions.append("/app/ext/992023081502465051/query_token,");
        exclusions.append("/callComponent/register/*,");
        exclusions.append("/callComponent/validate-code/*,");
        exclusions.append("/callComponent/validate-tel/*,");
@@ -98,7 +99,23 @@
        exclusions.append("/app/productSeckill.listProductSeckill,");//秒杀商品
        exclusions.append("/app/system.listRegisterProtocol,");//查询注册信息
        exclusions.append("/app/chargeMachine.listChargeMachine,");//查询充电桩
        exclusions.append("/app/chargeMachine.listChargeMachinePort,");//查询充电桩
        exclusions.append("/app/smartMeter/notify/*,");// 智能水电表通知放开
        exclusions.append("/app/equipments/*,");// 叮叮充电桩通知放开
        exclusions.append("/app/charge/*,");// 通用充电桩通知放开
        exclusions.append("/app/login.pcUserLogin,");// 放开接口登录
        exclusions.append("/app/login.accessTokenLogin,");// 放开接口登录
        exclusions.append("/app/login.getAccessToken,");// 放开接口登录
        // todo 静态二维码支付 相关接口放开
        exclusions.append("/app/payFeeQrcode.getQrcodeConfig,");// 放开接口登录
        exclusions.append("/app/user.ownerSendSms,");// 向业主发送验证码
        exclusions.append("/app/owner.getQrcodeOwner,");// 根据二维码查询业主信息
        exclusions.append("/app/reportInfoAnswer/queryReportInfoAnswerByOpenId");
@@ -108,7 +125,7 @@
        registrationBean.addUrlPatterns("/callComponent/*");
        registrationBean.addUrlPatterns("/flow/*");
        registrationBean.addUrlPatterns("/app/*");
        registrationBean.addInitParameter("excludedUri",exclusions.toString());
        registrationBean.addInitParameter("excludedUri", exclusions.toString());
        return registrationBean;
    }