Your Name
2023-09-24 b449727113bb4b5cdb9892c701680597fae6cef0
springboot/src/main/java/com/java110/boot/configuration/ServiceConfiguration.java
@@ -14,7 +14,7 @@
    public FilterRegistrationBean jwtFilter() {
        StringBuffer exclusions = new StringBuffer();
        exclusions.append("/callComponent/login/*,");
        exclusions.append("/app/ext/992020051967020024/login.getTokenForTeld,");
        exclusions.append("/app/ext/992023081502465051/query_token,");
        exclusions.append("/callComponent/register/*,");
        exclusions.append("/callComponent/validate-code/*,");
        exclusions.append("/callComponent/validate-tel/*,");
@@ -41,6 +41,7 @@
        exclusions.append("/app/loginProperty,");// 物业APP登录跳过
        exclusions.append("/app/loginOwner,");// 业主APP登录跳过
        exclusions.append("/app/loginOwnerByKey,");// 根据key登录业主
        exclusions.append("/app/user.ownerUserLogin,");// 业主登录(新)
        exclusions.append("/app/area.listAreas,");// 加载地区
        exclusions.append("/app/community.listCommunitys,");// 加载小区
        exclusions.append("/app/user.userSendSms,");// 发送短信验证码
@@ -108,6 +109,17 @@
        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/payFeeQrcode.getQrcodeOweFees,");// 根据二维码查询业主欠费
        exclusions.append("/app/wechat.getWechatMiniOpenId,");// 根据二维码查询业主欠费
        exclusions.append("/app/wechat.getCommunityWechatAppId,");// 查询小区微信appID
        exclusions.append("/app/payment.cashier,");// 收银接口
        exclusions.append("/app/fee.queryFeeDetail,");// 缴费明细
        exclusions.append("/app/reportInfoAnswer/queryReportInfoAnswerByOpenId");
@@ -117,7 +129,7 @@
        registrationBean.addUrlPatterns("/callComponent/*");
        registrationBean.addUrlPatterns("/flow/*");
        registrationBean.addUrlPatterns("/app/*");
        registrationBean.addInitParameter("excludedUri",exclusions.toString());
        registrationBean.addInitParameter("excludedUri", exclusions.toString());
        return registrationBean;
    }