mirror of
https://github.com/dromara/payment-spring-boot.git
synced 2026-03-14 05:43:46 +08:00
maven 中央仓库
This commit is contained in:
20
README.md
20
README.md
@@ -1,9 +1,27 @@
|
|||||||
# 微信支付 Spring Boot 组件
|
# 微信支付 Spring Boot 组件
|
||||||
|
|
||||||
为了满足业务中出现app支付、公众号支付、小程序支付等多appid并存的场景,对原有的进行了增强开发出了多租户版本。
|
为了满足业务中出现app支付、公众号支付、小程序支付等多appid并存的场景,对原有的进行了增强开发出了多租户版本。
|
||||||
|
|
||||||
|
## Maven 中央仓库坐标
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<dependency>
|
||||||
|
<groupId>cn.felord</groupId>
|
||||||
|
<artifactId>payment-spring-boot-starter</artifactId>
|
||||||
|
<version>1.0.0.RELEASE</version>
|
||||||
|
</dependency>
|
||||||
|
```
|
||||||
|
|
||||||
|
## 功能亮点
|
||||||
|
- 实现微信支付多商户
|
||||||
|
- 实现微信支付V3 基础支付
|
||||||
|
- 实现微信支付V3 合单支付
|
||||||
|
- 实现微信支付V3 代金券
|
||||||
|
- 集成支付宝SDK、快速接入Spring Boot
|
||||||
|
> 微信支付分等积极对接中……
|
||||||
## 开源协议
|
## 开源协议
|
||||||
**Apache 2.0**
|
**Apache 2.0**
|
||||||
# 文档地址
|
|
||||||
|
|
||||||
|
## 文档地址
|
||||||
[payment-spring-boot 文档](https://notfound403.github.io/payment-spring-boot)
|
[payment-spring-boot 文档](https://notfound403.github.io/payment-spring-boot)
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,14 @@
|
|||||||
- 微信支付 支付功能-普通支付直连模式 `WechatDirectPayApi` 100%
|
- 微信支付 支付功能-普通支付直连模式 `WechatDirectPayApi` 100%
|
||||||
- 微信合单支付 `WechatCombinePayApi` 100%
|
- 微信合单支付 `WechatCombinePayApi` 100%
|
||||||
|
|
||||||
|
## Maven 中央仓库坐标
|
||||||
|
```xml
|
||||||
|
<dependency>
|
||||||
|
<groupId>cn.felord</groupId>
|
||||||
|
<artifactId>payment-spring-boot-starter</artifactId>
|
||||||
|
<version>1.0.0.RELEASE</version>
|
||||||
|
</dependency>
|
||||||
|
```
|
||||||
## 采用技术
|
## 采用技术
|
||||||
只依赖了 **Spring**已有的东西,做到了低依赖。
|
只依赖了 **Spring**已有的东西,做到了低依赖。
|
||||||
|
|
||||||
|
|||||||
@@ -1,18 +1,24 @@
|
|||||||
## Maven中央仓库
|
## Maven 中央仓库坐标
|
||||||
|
|
||||||
> ❗注意:<span style= 'color:red;'>目前并没有上传到Maven中央仓库,等稳定后会进行支持。</span>
|
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<dependency>
|
||||||
|
<groupId>cn.felord</groupId>
|
||||||
|
<artifactId>payment-spring-boot-starter</artifactId>
|
||||||
|
<version>1.0.0.RELEASE</version>
|
||||||
|
</dependency>
|
||||||
|
```
|
||||||
|
> 基于 **Spring Boot 2.4.1**
|
||||||
|
|
||||||
## Spring Boot 版本适配
|
## Spring Boot 版本适配
|
||||||
|
|
||||||
克隆项目后修改根目录下的`pom.xml`以下配置项:
|
需要自行克隆项目,修改根目录下的`pom.xml`以下配置项:
|
||||||
```xml
|
```xml
|
||||||
<properties>
|
<properties>
|
||||||
<!-- 修改为你对应的Spring Boot版本号 -->
|
<!-- 修改为你对应的Spring Boot版本号 -->
|
||||||
<spring-boot.version>2.4.0</spring-boot.version>
|
<spring-boot.version>2.4.0</spring-boot.version>
|
||||||
</properties>
|
</properties>
|
||||||
```
|
```
|
||||||
|
然后安装使用
|
||||||
|
|
||||||
## 自行安装
|
## 自行安装
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user