ServiceConfiguration.java 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package com.java110.api.configuration;
  2. import com.java110.api.filter.JwtFilter;
  3. import org.springframework.boot.web.servlet.FilterRegistrationBean;
  4. import org.springframework.context.annotation.Bean;
  5. import org.springframework.context.annotation.Configuration;
  6. /**
  7. * Created by wuxw on 2018/5/2.
  8. */
  9. @Configuration
  10. public class ServiceConfiguration {
  11. @Bean
  12. public FilterRegistrationBean jwtFilter() {
  13. StringBuffer exclusions = new StringBuffer();
  14. exclusions.append("/callComponent/login/*,");
  15. exclusions.append("/callComponent/register/*,");
  16. exclusions.append("/callComponent/validate-code/*,");
  17. exclusions.append("/callComponent/validate-tel/*,");
  18. exclusions.append("/flow/login,");
  19. exclusions.append("/flow/register,");
  20. exclusions.append("/flow/advertVedioFlow,");//放开 广告页面是不需要登录的
  21. exclusions.append("/callComponent/advertVedioView/*,");//放开 广告页面是不需要登录的
  22. exclusions.append("/callComponent/download/getFile/file,");//放开 下载图片也不需要登录
  23. exclusions.append("/callComponent/download/getFile/fileByObjId,");//放开 下载图片也不需要登录
  24. exclusions.append("/callComponent/upload/uploadVedio/upload,");
  25. exclusions.append("/app/payment/notify,");//微信支付通知
  26. exclusions.append("/app/payment/notifyChinaUms,");//银联支付回调
  27. exclusions.append("/app/payment/rentingNotify,");//微信支付通知
  28. exclusions.append("/app/payment/oweFeeNotify,");//欠费微信支付通知
  29. exclusions.append("/app/payment/oweFeeNotifyChinaUms,");//欠费银联支付回调
  30. exclusions.append("/app/notice.listNotices,");//通知放开登录
  31. exclusions.append("/goods/notify,");//商品购买通知
  32. exclusions.append("/app/loginWx,");// 登录跳过
  33. exclusions.append("/app/getWxPhoto,");// 登录跳过
  34. exclusions.append("/app/loginProperty,");// 物业APP登录跳过
  35. exclusions.append("/app/loginOwner,");// 业主APP登录跳过
  36. exclusions.append("/app/loginOwnerByKey,");// 根据key登录业主
  37. exclusions.append("/app/area.listAreas,");// 加载地区
  38. exclusions.append("/app/community.listCommunitys,");// 加载小区
  39. exclusions.append("/app/user.userSendSms,");// 发送短信验证码
  40. exclusions.append("/app/owner.ownerRegister,");// 业主注册
  41. exclusions.append("/app/owner.ownerRegisterWxPhoto,");// 业主注册
  42. exclusions.append("/app/activities.listActivitiess,");//小区广告
  43. exclusions.append("/app/advert.listAdvertPhoto,");//小区广告图片
  44. exclusions.append("/app/junkRequirement.listJunkRequirements,");//市场
  45. exclusions.append("/app/wechat/gateway,");//微信公众号对接接口
  46. exclusions.append("/app/loginOwnerWechatAuth,");//微信公众号对接接口
  47. exclusions.append("/app/refreshToken,");//微信公众号对接接口
  48. exclusions.append("/app/renting/queryRentingPool,");//微信公众号对接接口
  49. exclusions.append("/app/activitiesType/queryActivitiesType,");//查询大类
  50. exclusions.append("/app/product/queryProductLabel,");//查询大类
  51. exclusions.append("/app/loginStaffWechatAuth,");//查询大类
  52. exclusions.append("/app/reportInfoSetting/queryReportInfoSetting,");//查询疫情
  53. exclusions.append("/app/reportInfoSettingTitle/querySettingTitle,");//查询疫情问卷详情
  54. exclusions.append("/app/reportInfoBackCity/saveReportInfoBackCity,");//返省人员信息上报
  55. exclusions.append("/app/reportInfoAnswerValue/saveReportInfoAnswerValue,");//保存疫情问卷
  56. exclusions.append("/app/staffAuth");//查询大类
  57. final FilterRegistrationBean registrationBean = new FilterRegistrationBean();
  58. registrationBean.setFilter(new JwtFilter());
  59. registrationBean.addUrlPatterns("/");
  60. registrationBean.addUrlPatterns("/callComponent/*");
  61. registrationBean.addUrlPatterns("/flow/*");
  62. registrationBean.addUrlPatterns("/app/*");
  63. registrationBean.addInitParameter("excludedUri",exclusions.toString());
  64. return registrationBean;
  65. }
  66. }