支付宝(移动支付)服务端java版
所需支付宝jar包: sdk2-2.0.jar(点击下载)
工具类目录结构: 点击下载
商户信息已经公钥私钥的配置(公钥私钥的生成与支付宝商户平台配置请看官方文档:https://doc.open.alipay.com/doc2/detail.htm?spm=a219a.7629140.0.0.nBDxfy&treeId=58&articleId=103242&docType=1、https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.BfaKdz&treeId=58&articleId=103578&docType=1),
AlipayConfig
- package com.rpframework.module.common.pay.alipay.config;
- public class AlipayConfig {
- //↓↓↓↓↓↓↓↓↓↓请在这里配置您的基本信息↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
- // 合作身份者ID,以2088开头由16位纯数字组成的字符串
- public static String partner = "2088...";
- // 商户的私钥
- public static String private_key = "MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBAKXcJq3Aj7uwht...";
- public static String seller_email = "2088...";
- // 支付宝的公钥
- public static String ali_public_key = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCnxj/9qwVfgoUh/y2W89...";
- //↑↑↑↑↑↑↑↑↑↑请在这里配置您的基本信息↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
- // 调试用,创建TXT日志文件夹路径
- public static String log_path = "D:\\";
- // 字符编码格式 目前支持 gbk 或 utf-8
- public static String input_charset = "utf-8";
- // 签名方式
- public static String sign_type = "RSA";
- }
- PayUtils
- package com.rk.shows.util;
- import com.rk.shows.util.alipay.config.AlipayConfig;
- import com.rk.shows.util.alipay.util.SignUtils;
- import java.io.UnsupportedEncodingException;
- import java.net.URLEncoder;
- /**
- *
- * 支付基本信息
- * @author zhangli
- * @date 2016年3月28日 下午2:35:24
- *
- *
- * 1.需要支付的信息 :
- * 用户支付 支付相关业务 支付金额 回调业务
- * 2.第三方支付需要的信息:
- * trade_no,subject,body,total_fee,notify_url
- *
- */
- public class PayUtils {
- public static String sign(String content, String RSA_PRIVATE) {
- return SignUtils.sign(content, RSA_PRIVATE);
- }
- /**
- * 支付宝支付
- * @param trade_no 订单号
- * @param total_fee 金额
- * @param subject 标题
- * @param body 内容
- * @param notify_url 回调地址
- * @return
- * @throws UnsupportedEncodingException
- */
- public static String AliPay(String trade_no, Double total_fee, String subject, String body, String notify_url) throws UnsupportedEncodingException{
- String orderInfo = "_input_charset=\"utf-8\"";
- orderInfo += "&body=" + "\"" + body + "\"";
- orderInfo += "&it_b_pay=\"30m\"";
- orderInfo += "¬ify_url=" + "\"" + notify_url + "\"";
- orderInfo += "&out_trade_no=" + "\"" + trade_no + "\"";
- orderInfo += "&partner=" + "\"" + AlipayConfig.partner + "\"";
- orderInfo += "&payment_type=\"1\"";
- orderInfo += "&return_url=\"" + notify_url + "\"";
- orderInfo += "&seller_id=" + "\"" + AlipayConfig.seller_email + "\"";
- orderInfo += "&service=\"mobile.securitypay.pay\"";
- orderInfo += "&subject=" + "\"" + subject + "\"";
- String format = String.format("%.2f", total_fee);
- if(format.indexOf(",")>0)format = format.replace(",", ".");
- orderInfo += "&total_fee=" + "\"" + format+"\"";
- System.out.println(orderInfo);
- String sign = sign(orderInfo, AlipayConfig.private_key);
- sign = URLEncoder.encode(sign, "utf-8");
- return orderInfo + "&sign=\"" + sign + "\"&" + "sign_type=\"RSA\"";
- }
- }
接口controller:
- package com.textile.controller;
- import com.rpframework.core.json.FailException;
- import com.rpframework.core.json.JsonResp;
- import com.rpframework.core.json.ParameterException;
- import com.rpframework.module.common.bottom.controller.BaseController;
- import com.rpframework.module.common.pay.alipay.util.AlipayNotify;
- import com.rpframework.module.common.url.RequestDescription;
- import com.textile.dto.MoneyDto;
- import com.textile.entity.MemberIntroduction;
- import com.textile.entity.MoneyRecord;
- import com.textile.entity.User;
- import com.textile.service.MemberIntroductionService;
- import com.textile.service.MoneyRecordService;
- import com.textile.service.UserService;
- import com.textile.util.PayUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.transaction.annotation.Transactional;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
- import javax.servlet.http.HttpServletRequest;
- import java.io.ByteArrayOutputStream;
- import java.io.IOException;
- import java.io.InputStream;
- import java.math.BigDecimal;
- import java.util.*;
- /**
- * Created by bin on 2016/11/16.
- */
- @ResponseBody
- @Controller
- @RequestMapping
- public class MoneyController {
- //http://139.224.42.24:8899
- //http://tt.tunnel.2bdata.com
- public static String alinotify = "/api/json/money/alipay/succ";
- @RequestMapping
- @RequestDescription("支付宝支付回调地址")
- @Transactional(rollbackFor = Throwable.class)
- public String alipaySucc(HttpServletRequest request) throws IOException {
- System.out.println("支付宝回调");
- Map<String, String> params = new HashMap<>();
- Map<String, String[]> requestParams = request.getParameterMap();
- for (Iterator<String> iter = requestParams.keySet().iterator(); iter.hasNext();) {
- String name = iter.next();
- String[] values = requestParams.get(name);
- String valueStr = "";
- for (int i = 0; i < values.length; i++) {
- valueStr = (i == values.length - 1) ? valueStr + values[i] : valueStr + values[i] + ",";
- }
- // 乱码解决,这段代码在出现乱码时使用。如果mysign和sign不相等也可以使用这段代码转化
- // valueStr = new String(valueStr.getBytes("ISO-8859-1"), "gbk");
- params.put(name, valueStr);
- }
- //String out_trade_no = request.getParameter("out_trade_no");// 商户订单号
- //获取支付宝的通知返回参数,可参考技术文档中页面跳转同步通知参数列表(以下仅供参考)//
- //商户订单号
- //String out_trade_no = new String(request.getParameter("out_trade_no").getBytes("ISO-8859-1"),"UTF-8");
- //支付宝交易号
- //String trade_no = new String(request.getParameter("trade_no").getBytes("ISO-8859-1"),"UTF-8");
- //交易状态
- String trade_status = new String(request.getParameter("trade_status").getBytes("ISO-8859-1"),"UTF-8");
- //获取支付宝的通知返回参数,可参考技术文档中页面跳转同步通知参数列表(以上仅供参考)//
- if(AlipayNotify.verify(params)){//验证成功
- //////////////////////////////////////////////////////////////////////////////////////////
- //请在这里加上商户的业务逻辑程序代码
- //——请根据您的业务逻辑来编写程序(以下代码仅作参考)——
- if(trade_status.equals("TRADE_FINISHED")){
- //判断该笔订单是否在商户网站中已经做过处理
- //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序
- //请务必判断请求时的total_fee、seller_id与通知时获取的total_fee、seller_id为一致的
- //如果有做过处理,不执行商户的业务程序
- //注意:
- //退款日期超过可退款期限后(如三个月可退款),支付宝系统发送该交易状态通知
- } else if (trade_status.equals("TRADE_SUCCESS")){
- //判断该笔订单是否在商户网站中已经做过处理
- //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序
- //请务必判断请求时的total_fee、seller_id与通知时获取的total_fee、seller_id为一致的
- //如果有做过处理,不执行商户的业务程序
- //注意:
- //付款完成后,支付宝系统发送该交易状态通知
- String total_fee = params.get("total_fee");
- Long userId = Long.valueOf(params.get("out_trade_no").split("O")[0]);
- //updateUserPay(userId, total_fee);
- return "success";
- }
- //——请根据您的业务逻辑来编写程序(以上代码仅作参考)——
- //////////////////////////////////////////////////////////////////////////////////////////
- }else{//验证失败
- System.out.println("+++++++++++++++++++=验证失败");
- return "fail";
- }
- return "fail";
- }
- /*
- private void updateUserPay(Long userId, String total_fee) {
- User user = userService.selectByPrimaryKey(userId);
- if (user != null) {
- user.setPassword(null);
- //余额
- BigDecimal account = user.getAccount() == null ? BigDecimal.valueOf(0.00) : user.getAccount();
- user.setAccount(account.add(BigDecimal.valueOf(Double.valueOf(total_fee))));
- //积分
- //BigDecimal integral = user.getIntegral() == null ? BigDecimal.valueOf(0.00) : user.getIntegral();
- //user.setIntegral(integral.add(BigDecimal.valueOf(Double.valueOf(total_fee))));
- int i = userService.updateByPrimaryKeySelective(user);
- if (i <= 0) {
- log.debug("更新用户出错");
- }
- //充值记录
- MoneyRecord moneyRecord = new MoneyRecord();
- moneyRecord.setTitle("充值");
- moneyRecord.setType(1);
- moneyRecord.setMoneyChange("+" + total_fee);
- moneyRecord.setUserId(userId);
- moneyRecordService.insertJson(moneyRecord);
- log.debug("记录添加成功");
- }
- }
- */
- @RequestMapping
- @RequestDescription("支付宝充值")
- @Transactional(rollbackFor = Throwable.class)
- public JsonResp<?> getAlipayOrderSign(Double money, HttpServletRequest request) throws Exception {
- String sym = request.getRequestURL().toString().split("/api/")[0];
- Long userId = baseController.getUserId();
- String trade_no0 = userId + "O" + UUID.randomUUID().toString().replaceAll("-", "").toLowerCase();
- String trade_no = trade_no0.substring(0,32);
- String stringStringMap = null;
- stringStringMap = PayUtils.AliPay(
- trade_no,
- money, //金额
- "纺织达人充值", //订单名称
- "纺织达人充值", //订单说明
- sym + alinotify //回调哪个方法
- );
- if (stringStringMap != null) {
- str = stringStringMap.substring(17,stringStringMap.length()-3);
- }
- JsonResp<String> jsonResp = new JsonResp<>();
- if (stringStringMap != null) {
- return jsonResp.data(stringStringMap);
- }else {
- throw new FailException();
- }
- }
- }
参考资料:
教程
http://blog.csdn.net/xingzizhanlan/article/details/52709899
公钥私钥:
https://doc.open.alipay.com/doc2/detail.htm?spm=a219a.7629140.0.0.nBDxfy&treeId=58&articleId=103242&docType=1
文档:
https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.rnMrxU&treeId=193&articleId=105465&docType=1
http://www.cnblogs.com/xu-xiang/p/5797643.html
网页支付:
http://www.jb51.net/article/88127.htm
支付宝和微信支付:
简书:http://www.jianshu.com/p/a4f515387264
12.2:
支付宝支付:
http://blog.csdn.net/fengshizty/article/details/53215196
app支付和移动支付的疑问:
http://www.cnblogs.com/harris-peng/p/6007020.html
支付宝(移动支付)服务端java版的更多相关文章
- 支付宝app支付服务端流程
支付宝APP支付服务端详解 前面接了微信支付,相比微信支付,支付宝APP支付提供了支付封装类,下面将实现支付宝APP支付.订单查询.支付结果异步通知.APP支付申请参数说明,以及服务端返回APP端发起 ...
- 使用DWR实现JS调用服务端Java代码
DWR简介 DWR全称Direct Web Remoting,是一款非常优秀的远程过程调用(Remote Procedure Call)框架,通过浏览器提供的Ajax引擎实现在前端页面的JS代码中调用 ...
- java工具类(一)之服务端java实现根据地址从百度API获取经纬度
服务端java实现根据地址从百度API获取经纬度 代码: package com.pb.baiduapi; import java.io.BufferedReader; import java.io. ...
- Python中的Tcp协议应用之TCP服务端-线程版
利用线程实现,一个服务端同时服务多个客户端的需求. TCP服务端-线程版代码实现: import socket import threading def handle_client_socket(ne ...
- 微信app支付(android端+java后台)
本文讲解使用微信支付接口完成在android开发的原生态app中完成微信支付功能, 文章具体讲解了前端android如何集成微信支付功能以及后台如何组装前端需要支付信息, 话不多话, 具体看文章内容吧 ...
- 客户端JavaScript加密数据,服务端Java解密数据
原文:http://blog.csdn.net/peterwanghao/article/details/43303807 在普通的页面提交时,如果没有使用SSL,提交的数据将使用纯文本的方式发送.如 ...
- 微信小程序访问webservice(wsdl)+ axis2发布服务端(Java)
0.主要思路:使用axis2发布webservice服务端,微信小程序作为客户端访问.步骤如下: 1.服务端: 首先微信小程序仅支持访问https的url,且必须是已备案域名.因此前期的服务器端工作需 ...
- 【gRPC】C++异步服务端优化版,多服务接口样例
官方的C++异步服务端API样例可读性并不好,理解起来非常的费劲,各种状态机也并不明了,整个运行过程也容易读不懂,因此此处参考网上的博客进行了重写,以求顺利读懂. C++异步服务端实例,详细注释版 g ...
- 微信APP支付服务端开发Java版(一)
一.准备工作 去微信开发者中心下载(扫码支付,里面的大部分代码是可以用的) https://pay.weixin.qq.com/wiki/doc/api/micropay.php?chapter=11 ...
随机推荐
- CSS选择器、层叠相关的基础知识
CSS是Cascading Style Sheets的英文缩写,即层叠样式表.CSS2.1是W3C于2007年发布,现在推荐使用的.CSS3现在还处于开发中,有部分浏览器的新版本支持. 1. CSS ...
- Python文件遍历二种方法
分享下有关Python文件遍历的两种方法,使用的OS模块的os.walk和os.listdir实现. 关于Python的文件遍历,大概有两种方法,一种是较为便利的os.walk(),还有一种是利用os ...
- [k8s]k8s 1.9(on the fly搭建) 1.9_cni-flannel部署排错 ipvs模式
角色 节点名 节点ip master n1 192.168.14.11 节点1 n2 192.168.14.12 节点2 n3 192.168.14.13 https://raw.githubuser ...
- js正则匹配中文
alert(/[\u4e00-\u9fa5]{4}/.test("司徒正美"))//true alert(/[\u4e00-\u9fa5]{4}/.test("司正美&q ...
- 去除img、video之间默认间隔的几种方法
img,video{ /*第1种方式*/ border: ; vertical-align: bottom; /*第2种方式*/ outline-width:0px; vertical-align:t ...
- 检测SqlServer数据库是否能连接的小技巧
有时候可能需要检测下某台机器的服务是不是起来了,或者某台机器的某个库是不是能被连接又不能打开ssms也不想登陆服务器的话就可以用这个方法. 1.在桌面上右键创建个文本,然后改后缀名为udl以后保存(1 ...
- 在ajax post处理文件下载
我有一个JavaScript应用程序需要使用ajax post请求发送到某个URL,然后后端会根据请求中的参数进行相应的工作,生成一个可下载的压缩包,等待下载.必须使用的ajax的原因是这里需要模拟提 ...
- vim复制粘贴常用命令
在Windows下我们习惯的操作,复制单个字符,复制单行多行,删除单行多行,在linux的vim中操作如下: G(shift+g+g):跳到文档尾 g+g:跳转到文档首 home键:光标移动到行首 e ...
- hdu2199(高精度二分模版)
Now,given the equation 8*x^4 + 7*x^3 + 2*x^2 + 3*x + 6 == Y,can you find its solution between 0 and ...
- dp之二维背包poj1837(天平问题 推荐)
题意:给你c(2<=c<=20)个挂钩,g(2<=g<=20)个砝码,求在将所有砝码(砝码重1~~25)挂到天平(天平长 -15~~15)上,并使得天平平衡的方法数..... ...