All Projects → binarywang → Weixin Java Pay Demo

binarywang / Weixin Java Pay Demo

基于Spring Boot 和 WxJava 实现的微信支付Java后端Demo

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Weixin Java Pay Demo

Wxpay
微信支付 wxpay SDK for Go, 集成简单,功能完善,持续更新。
Stars: ✭ 99 (-84.21%)
Mutual labels:  wxpay, weixin
Teepay
Typecho 个人支付宝、微信收款插件
Stars: ✭ 90 (-85.65%)
Mutual labels:  wxpay, weixin
Wxpay Sdk
最新最全微信支付集成SDK,一行代码调用微信支付,包含基础支付功能(网页授权、各种签名、统一下单、退款、对账单、用户信息获取)、验收用例指引(沙箱支付、支付验收、免充值产品开通)、商户平台(现金红包、企业付款到用户、代金券或立减优惠)、公众平台(微信卡券、社交立减金活动)、小程序(生成永久二维码、发送模版消息)等等更多丰富接口注释和例子。
Stars: ✭ 443 (-29.35%)
Mutual labels:  wxpay, weixin
Ijpay
IJPay 让支付触手可及,封装了微信支付、QQ支付、支付宝支付、京东支付、银联支付、PayPal 支付等常用的支付方式以及各种常用的接口。不依赖任何第三方 mvc 框架,仅仅作为工具使用简单快速完成支付模块的开发,可轻松嵌入到任何系统里。右上角点下小星星✨
Stars: ✭ 3,561 (+467.94%)
Mutual labels:  wxpay, weixin
Sns auth
通用第三方登录SDK,支持微信,微信扫码,QQ,微博登录,支付宝登录,Facebook,Line,Twitter,Google
Stars: ✭ 520 (-17.07%)
Mutual labels:  weixin
Weixin public corpus
微信公众号语料库
Stars: ✭ 465 (-25.84%)
Mutual labels:  weixin
Wechat Bot
带二次开发接口的PC微信聊天机器人
Stars: ✭ 458 (-26.95%)
Mutual labels:  weixin
Wecheat
开箱即用的微信公众平台API模拟服务器,帮助你开发与调试微信公众平台应用
Stars: ✭ 440 (-29.82%)
Mutual labels:  weixin
Wechattweak Macos
A dynamic library tweak for WeChat macOS - 首款微信 macOS 客户端撤回拦截与多开
Stars: ✭ 6,505 (+937.48%)
Mutual labels:  weixin
Wechat Jssdk
🐧WeChat JS-SDK integration with NodeJS
Stars: ✭ 571 (-8.93%)
Mutual labels:  weixin
Wux Weapp
🐶 一套组件化、可复用、易扩展的微信小程序 UI 组件库
Stars: ✭ 4,706 (+650.56%)
Mutual labels:  weixin
Weindex
微信相关资源汇总索引
Stars: ✭ 466 (-25.68%)
Mutual labels:  weixin
Wecron
✔️ 微信上的定时提醒 - Cron on WeChat
Stars: ✭ 537 (-14.35%)
Mutual labels:  weixin
Ocbarrage
iOS 弹幕库 OCBarrage, 同时渲染5000条弹幕也不卡, 轻量, 可拓展, 高度自定义动画, 超高性能, 简单易上手; A barrage render-engine with high performance for iOS. At the same time, rendering 5000 barrages is also very smooth, lightweight, scalable, highly custom animation, ultra high performance, simple and easy to use!
Stars: ✭ 589 (-6.06%)
Mutual labels:  weixin
Planmaster
套餐助手:手机套餐对比选购小程序
Stars: ✭ 487 (-22.33%)
Mutual labels:  weixin
Pageslider
朋友圈广告 - 移动端滑屏翻页插件
Stars: ✭ 442 (-29.51%)
Mutual labels:  weixin
Echarts For Weixin
Apache ECharts (incubating) 的微信小程序版本
Stars: ✭ 5,479 (+773.84%)
Mutual labels:  weixin
Qrpay
五合一收款码在线生成,40个模板 支持微信支付、支付宝支付、手机QQ支付、京东钱包、百度钱包,PayPal五合一收款,将其二维码合并为一个二维码,无需手续费,支持qq头像,昵称判断(HTML单页版多模板免安装) 腾讯云服务器 https://api.isoyu.com/qrpay/ 腾讯云COS https://qrpay.isoyu.com/
Stars: ✭ 477 (-23.92%)
Mutual labels:  wxpay
Vim Chat
💜 Chatting plugin for neovim and vim8
Stars: ✭ 475 (-24.24%)
Mutual labels:  weixin
Apfree wifidog
A hight performance and lightweight captive portal solution for HTTP(s)
Stars: ✭ 519 (-17.22%)
Mutual labels:  weixin

码云Gitee Github Build Status

本 Demo 基于 WxJavaSpring Boot 构建,演示微信支付后端接口使用方法。

使用步骤:

  1. 新手遇到问题,请务必先阅读【开发文档首页】的常见问题部分,可以少走很多弯路,节省不少时间。
  2. 如有问题,请到此处提问:https://github.com/binarywang/weixin-java-pay-demo/issues
  3. 配置:复制/src/main/resources/application.yml.template或者修改其扩展名生成application.yml文件,并根据自己需要填写相关配置,其中支付相关参数含义请参考WxPayProperties类中的注释(需要注意的是:yml文件内的属性冒号后面的文字之前需要加空格,可参考已有配置,否则属性会设置不成功);
  4. 其中各参数的含义请参考 /src/main/java/com/github/binarywang/demo/wxpay/config/WxPayProperties.java 文件里的注释;
  5. 需要特别注意的,是sub开头的两个参数属于服务商模式使用的,如果是普通模式,请不要配置这两个参数,最好从配置文件中移除相关项;
  6. 查看WxPayController类代码,根据自己需要修改调整相关实现;
  7. 运行Java程序:WxPayDemoApplication
  8. 打开网页浏览器,输入想要访问的地址,比如http://localhost:8080/pay/closeOrder/123查看效果。
  9. 还可以访问 http://localhost:8080/swagger-ui.html 来查看所有可用接口,并进行在线调试;
  10. 更多接口使用说明,请参考 wiki 文档
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].