weixin-java-tools/spring-boot-starters/wx-java-pay-spring-boot-starter
2025-03-18 12:58:09 +08:00
..
src/main 🎨【微信支付】spring-boot-starter模块增加公钥ID和证书文件路径等配置项 2025-01-24 21:27:34 +08:00
pom.xml 🔖 发布 4.7.3.B 测试版本 2025-03-18 12:58:09 +08:00
README.md 🎨【微信支付】增加微信支付服务商V3版本说明 2023-08-17 12:52:29 +08:00

使用说明

  1. 在自己的Spring Boot项目里引入maven依赖
    <dependency>
        <groupId>com.github.binarywang</groupId>
        <artifactId>wx-java-pay-spring-boot-starter</artifactId>
        <version>${version}</version>
    </dependency>
  1. 添加配置(application.yml)
1V2版本
wx:
  pay:
    appId: 
    mchId: 
    mchKey: 
    keyPath:
2V3版本
wx:
  pay:
    appId: xxxxxxxxxxx
    mchId: 15xxxxxxxxx #商户id
    apiV3Key: Dc1DBwSc094jACxxxxxxxxxxxxxxx #V3密钥
    certSerialNo: 62C6CEAA360BCxxxxxxxxxxxxxxx
    privateKeyPath: classpath:cert/apiclient_key.pem #apiclient_key.pem证书文件的绝对路径或者以classpath:开头的类路径
    privateCertPath: classpath:cert/apiclient_cert.pem #apiclient_cert.pem证书文件的绝对路径或者以classpath:开头的类路径
3V3服务商版本
wx:
  pay: #微信服务商支付
    configs:
    - appId: wxe97b2x9c2b3d #spAppId
      mchId: 16486610 #服务商商户
      subAppId: wx118cexxe3c07679 #子appId
      subMchId: 16496705 #子商户
      apiV3Key: Dc1DBwSc094jAKDGR5aqqb7PTHr #apiV3密钥
      privateKeyPath: classpath:cert/apiclient_key.pem #服务商证书文件apiclient_key.pem证书文件的绝对路径或者以classpath:开头的类路径(可以配置绝对路径)
      privateCertPath: classpath:cert/apiclient_cert.pem #apiclient_cert.pem证书文件的绝对路径或者以classpath:开头的类路径