weixin-java-tools/spring-boot-starters/wx-java-mp-spring-boot-starter
2020-09-20 16:43:23 +08:00
..
src/main 🎨 优化企业微信消息发送接口代码,引入moco模拟测试组件,方便测试代码 2020-08-30 17:43:26 +08:00
pom.xml 🔖 发布 3.9.3.B 测试版本 2020-09-20 16:43:23 +08:00
README.md 🎨 优化重构并统一公众号和小程序的spring boot starter部分配置类和属性 2020-08-30 10:53:14 +08:00

wx-java-mp-spring-boot-starter

快速开始

  1. 引入依赖
    <dependency>
        <groupId>com.github.binarywang</groupId>
        <artifactId>wx-java-mp-spring-boot-starter</artifactId>
        <version>${version}</version>
    </dependency>
    
  2. 添加配置(application.properties)
    # 公众号配置(必填)
    wx.mp.appId = appId
    wx.mp.secret = @secret
    wx.mp.token = @token
    wx.mp.aesKey = @aesKey
    # 存储配置redis(可选)
    wx.mp.config-storage.type = Jedis                     # 配置类型: Memory(默认), Jedis, RedisTemplate
    wx.mp.config-storage.key-prefix = wx                  # 相关redis前缀配置: wx(默认)
    wx.mp.config-storage.redis.host = 127.0.0.1
    wx.mp.config-storage.redis.port = 6379
    # http客户端配置
    wx.mp.config-storage.http-client-type=httpclient      # http客户端类型: HttpClient(默认), OkHttp, JoddHttp
    wx.mp.config-storage.http-proxy-host=
    wx.mp.config-storage.http-proxy-port=
    wx.mp.config-storage.http-proxy-username=
    wx.mp.config-storage.http-proxy-password=
    
  3. 自动注入的类型
  • WxMpService以及相关的服务类, 比如: wxMpService.getXxxService
  • WxMpConfigStorage