weixin-java-tools/solon-plugins/wx-java-cp-solon-plugin
2025-03-18 12:58:09 +08:00
..
src 🎨 solon-plugins 添加单元测试支持,可触发必要错误用于人工核对 2024-09-06 23:46:08 +08:00
pom.xml 🔖 发布 4.7.3.B 测试版本 2025-03-18 12:58:09 +08:00
README.md 🆕 #3217 增加 solon-plugins 适配 2024-09-02 17:18:56 +08:00

wx-java-cp-solon-plugin

快速开始

  1. 引入依赖

    <dependency>
        <groupId>com.github.binarywang</groupId>
        <artifactId>wx-java-cp-solon-plugin</artifactId>
        <version>${version}</version>
    </dependency>
    
  2. 添加配置(app.properties)

    # 企业微信号配置(必填)
    wx.cp.corp-id = @corp-id
    wx.cp.corp-secret = @corp-secret
    # 选填
    wx.cp.agent-id = @agent-id
    wx.cp.token = @token
    wx.cp.aes-key = @aes-key
    wx.cp.msg-audit-priKey = @msg-audit-priKey
    wx.cp.msg-audit-lib-path = @msg-audit-lib-path
    # ConfigStorage 配置(选填)
    wx.cp.config-storage.type=memory # 配置类型: memory(默认), jedis, redisson, redistemplate
    # http 客户端配置(选填)
    wx.cp.config-storage.http-proxy-host=
    wx.cp.config-storage.http-proxy-port=
    wx.cp.config-storage.http-proxy-username=
    wx.cp.config-storage.http-proxy-password=
    # 最大重试次数默认5 次,如果小于 0则为 0
    wx.cp.config-storage.max-retry-times=5
    # 重试时间间隔步进默认1000 毫秒,如果小于 0则为 1000
    wx.cp.config-storage.retry-sleep-millis=1000
    
  3. 支持自动注入的类型: WxCpService, WxCpConfigStorage

  4. 覆盖自动配置: 自定义注入的bean会覆盖自动注入的

  • WxCpService
  • WxCpConfigStorage