iamberry-wechat-service-provider.xml 8.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans
  5. http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://code.alibabatech.com/schema/dubbo
  7. http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
  8. <!-- 提供方应用信息,用于计算依赖关系-->
  9. <dubbo:application name="iamberry-wechat-service-provider"/>
  10. <!-- 使用zookeeper注册中心暴露服务地址 -->
  11. <dubbo:registry address="zookeeper://127.0.0.1:2181"/>
  12. <!-- 用dubbo协议在20880端口暴露服务 -->
  13. <dubbo:protocol name="dubbo" port="-1"/>
  14. <dubbo:monitor protocol="registry"/>
  15. <!-- 当ProtocolConfig和ServiceConfig没有设置时,使用默认值 -->
  16. <dubbo:provider timeout="30000" threadpool="fixed" threads="500" accepts="100" accesslog="true"/>
  17. <dubbo:service interface="com.iamberry.wechat.face.admin.AdminAdministratorService" ref="adminAdministratorServiceImpl" timeout="30000"/>
  18. <dubbo:service interface="com.iamberry.wechat.face.admin.AdminLoginService" ref="adminLoginServiceImpl" timeout="30000"/>
  19. <dubbo:service interface="com.iamberry.wechat.face.admin.AdminLogService" ref="adminLogServiceImpl" timeout="30000"/>
  20. <dubbo:service interface="com.iamberry.wechat.face.admin.AdminPermissionsService" ref="adminPermissionsServiceImpl" timeout="30000"/>
  21. <dubbo:service interface="com.iamberry.wechat.face.admin.SystemService" ref="systemServiceImpl" timeout="30000"/>
  22. <dubbo:service interface="com.iamberry.wechat.face.agent.AgentMemberService" ref="agentMemberServiceImpl" timeout="30000"/>
  23. <dubbo:service interface="com.iamberry.wechat.face.agent.AgentOrderService" ref="agentOrderServiceImpl" timeout="30000"/>
  24. <dubbo:service interface="com.iamberry.wechat.face.banner.AdminBannerService" ref="adminBannerServiceImpl" timeout="30000"/>
  25. <dubbo:service interface="com.iamberry.wechat.face.bindingapp.BindingMacService" ref="bindingMacServiceImpl" timeout="30000"/>
  26. <dubbo:service interface="com.iamberry.wechat.face.cart.CartService" ref="cartServiceImpl" timeout="30000"/>
  27. <dubbo:service interface="com.iamberry.wechat.face.cart.ProductInfoService" ref="productInfoServiceImpl" timeout="30000"/>
  28. <dubbo:service interface="com.iamberry.wechat.face.coupon.AdminCouponItemService" ref="adminCouponItemServiceImpl" timeout="30000"/>
  29. <dubbo:service interface="com.iamberry.wechat.face.coupon.CouponItemService" ref="couponItemServiceImpl" timeout="30000"/>
  30. <dubbo:service interface="com.iamberry.wechat.face.coupon.CouponTypeService" ref="couponTypeServiceImpl" timeout="30000"/>
  31. <dubbo:service interface="com.iamberry.wechat.face.drp.DrpRoleInfoService" ref="drpRoleInfoServiceImpl" timeout="30000"/>
  32. <dubbo:service interface="com.iamberry.wechat.face.drp.PlaceInfoService" ref="placeInfoServiceImpl" timeout="30000"/>
  33. <dubbo:service interface="com.iamberry.wechat.face.drp.PlaceLogsService" ref="placeLogsServiceImpl" timeout="30000"/>
  34. <dubbo:service interface="com.iamberry.wechat.face.drp.PlaceOrderService" ref="placeOrderServiceImpl" timeout="30000"/>
  35. <dubbo:service interface="com.iamberry.wechat.face.drp.PlaceWithDrawalsLogsService" ref="placeWithDrawalsLogsServiceImpl" timeout="30000"/>
  36. <dubbo:service interface="com.iamberry.wechat.face.flow.TemplateFlowInfoService" ref="templateFlowInfoServiceImpl" timeout="30000"/>
  37. <dubbo:service interface="com.iamberry.wechat.face.flow.TemplateInfoService" ref="templateInfoServiceImpl" timeout="30000"/>
  38. <dubbo:service interface="com.iamberry.wechat.face.home.HomeService" ref="homeServiceImpl" timeout="30000"/>
  39. <dubbo:service interface="com.iamberry.wechat.face.member.CashLogService" ref="cashLogServiceImpl" timeout="30000"/>
  40. <dubbo:service interface="com.iamberry.wechat.face.member.IntegralService" ref="integralServiceImpl" timeout="30000"/>
  41. <dubbo:service interface="com.iamberry.wechat.face.member.MemberService" ref="memberServiceImpl" timeout="30000"/>
  42. <dubbo:service interface="com.iamberry.wechat.face.member.ShareInfoService" ref="shareInfoServiceImpl" timeout="30000"/>
  43. <dubbo:service interface="com.iamberry.wechat.face.member.WithdrawService" ref="withdrawServiceImpl" timeout="30000"/>
  44. <dubbo:service interface="com.iamberry.wechat.face.mq.EfastOrderService" ref="efastOrderServiceImpl" timeout="30000"/>
  45. <dubbo:service interface="com.iamberry.wechat.face.mq.MQSerivce" ref="MQSerivceImpl" timeout="30000"/>
  46. <dubbo:service interface="com.iamberry.wechat.face.news.NewsService" ref="newsServiceImpl" timeout="30000"/>
  47. <dubbo:service interface="com.iamberry.wechat.face.order.AdminOrderService" ref="adminOrderServiceImpl" timeout="30000"/>
  48. <dubbo:service interface="com.iamberry.wechat.face.pay.PayService" ref="payServiceImpl" timeout="30000"/>
  49. <dubbo:service interface="com.iamberry.wechat.face.porduct.ProductImageTextService" ref="productImageTextServiceImpl" timeout="30000"/>
  50. <dubbo:service interface="com.iamberry.wechat.face.porduct.ProductPictureService" ref="productPictureServiceImpl" timeout="30000"/>
  51. <dubbo:service interface="com.iamberry.wechat.face.porduct.ProductService" ref="productServiceImpl" timeout="30000"/>
  52. <dubbo:service interface="com.iamberry.wechat.face.qrcode.QrcodeService" ref="qrcodeServiceImpl" timeout="30000"/>
  53. <dubbo:service interface="com.iamberry.wechat.face.qrcode.TemporaryQrcodeService" ref="temporaryQrcodeServiceImpl" timeout="30000"/>
  54. <dubbo:service interface="com.iamberry.wechat.face.reback.RebackServices" ref="rebackServicesImpl" timeout="30000"/>
  55. <dubbo:service interface="com.iamberry.wechat.face.reback.RebackStaticService" ref="rebackStaticServiceImpl" timeout="30000"/>
  56. <dubbo:service interface="com.iamberry.wechat.face.relationship.DealerRelationService" ref="dealerRelationServiceImpl" timeout="30000"/>
  57. <dubbo:service interface="com.iamberry.wechat.face.relationship.WdRelationService" ref="wdRelationServiceImpl" timeout="30000"/>
  58. <dubbo:service interface="com.iamberry.wechat.face.wechat.ConfigService" ref="configServiceImpl" timeout="30000"/>
  59. <dubbo:service interface="com.iamberry.wechat.face.wechat.FirstJoinKeyService" ref="firstJoinKeyServiceImpl" timeout="30000"/>
  60. <dubbo:service interface="com.iamberry.wechat.face.wechat.ImageTextInfoService" ref="imageTextInfoServiceImpl" timeout="30000"/>
  61. <dubbo:service interface="com.iamberry.wechat.face.wechat.ImageTextMoreService" ref="imageTextMoreServiceImpl" timeout="30000"/>
  62. <dubbo:service interface="com.iamberry.wechat.face.wechat.KeyWordService" ref="keyWordServiceImpl" timeout="30000"/>
  63. <dubbo:service interface="com.iamberry.wechat.face.wechat.MenuInfoService" ref="menuInfoServiceImpl" timeout="30000"/>
  64. <dubbo:service interface="com.iamberry.wechat.face.wechat.MenuKeySetService" ref="menuKeySetServiceImpl" timeout="30000"/>
  65. <dubbo:service interface="com.iamberry.wechat.face.wechat.TokenService" ref="tokenServiceImpl" timeout="30000"/>
  66. <dubbo:service interface="com.iamberry.wechat.face.wechat.WeChatService" ref="weChatServiceImpl" timeout="30000"/>
  67. <dubbo:service interface="com.iamberry.wechat.face.statistics.AdminStatisticsService" ref="adminStatisticsServiceImpl" timeout="30000"/>
  68. <dubbo:service interface="com.iamberry.wechat.face.porduct.ProductTypeService" ref="productTypeServiceImpl" timeout="30000"/>
  69. <dubbo:service interface="com.iamberry.wechat.face.task.WechatTaskService" ref="wechatTaskServiceImpl" timeout="30000"/>
  70. <dubbo:service interface="com.iamberry.wechat.face.rewards.RewardsService" ref="rewardsServiceImpl" timeout="30000"/>
  71. <dubbo:service interface="com.iamberry.wechat.face.rewards.SalesLogService" ref="salesLogServiceImpl" timeout="30000"/>
  72. <dubbo:service interface="com.iamberry.wechat.face.game.GameService" ref="gameServiceImpl" timeout="30000"/>
  73. <!-- 营养自测 -->
  74. <dubbo:service interface="com.iamberry.wechat.face.questionnaire.QuestionnaireService" ref="questionnaireServiceImpl" timeout="30000"/>
  75. <dubbo:service interface="com.iamberry.wechat.face.questionnaire.QuestionOptionService" ref="questionOptionServiceImpl" timeout="30000"/>
  76. <dubbo:service interface="com.iamberry.wechat.face.questionnaire.QuestionnaireAnswerService" ref="questionnaireAnswerServiceImpl" timeout="30000"/>
  77. <dubbo:service interface="com.iamberry.wechat.face.questionnaire.QuestionnaireAnswerDetailedService" ref="questionnaireAnswerDetailedServiceImpl" timeout="30000"/>
  78. <dubbo:service interface="com.iamberry.wechat.face.questionnaire.QuestionnairePaperService" ref="questionnairePaperServiceImpl" timeout="30000"/>
  79. </beans>