所需支付宝jar包: sdk2-2.0.jar(点击下载)

工具类目录结构:   点击下载

商户信息已经公钥私钥的配置(公钥私钥的生成与支付宝商户平台配置请看官方文档:https://doc.open.alipay.com/doc2/detail.htm?spm=a219a.7629140.0.0.nBDxfy&treeId=58&articleId=103242&docType=1https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.BfaKdz&treeId=58&articleId=103578&docType=1),

AlipayConfig

  1. package com.rpframework.module.common.pay.alipay.config;
  2.  
  3. public class AlipayConfig {
  4.  
  5. //↓↓↓↓↓↓↓↓↓↓请在这里配置您的基本信息↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
  6. // 合作身份者ID,以2088开头由16位纯数字组成的字符串
  7. public static String partner = "2088...";
  8. // 商户的私钥
  9. public static String private_key = "MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBAKXcJq3Aj7uwht...";
  10. public static String seller_email = "2088...";
  11.  
  12. // 支付宝的公钥
  13. public static String ali_public_key = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCnxj/9qwVfgoUh/y2W89...";
  14. //↑↑↑↑↑↑↑↑↑↑请在这里配置您的基本信息↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
  15.  
  16. // 调试用,创建TXT日志文件夹路径
  17. public static String log_path = "D:\\";
  18.  
  19. // 字符编码格式 目前支持 gbk 或 utf-8
  20. public static String input_charset = "utf-8";
  21.  
  22. // 签名方式
  23. public static String sign_type = "RSA";
  24.  
  25. }
  1. PayUtils
  1. package com.rk.shows.util;
  2.  
  3. import com.rk.shows.util.alipay.config.AlipayConfig;
  4. import com.rk.shows.util.alipay.util.SignUtils;
  5.  
  6. import java.io.UnsupportedEncodingException;
  7. import java.net.URLEncoder;
  8.  
  9. /**
  10. *
  11. * 支付基本信息
  12. * @author zhangli
  13. * @date 2016年3月28日 下午2:35:24
  14. *
  15. *
  16. * 1.需要支付的信息 :
  17. * 用户支付 支付相关业务 支付金额 回调业务
  18. * 2.第三方支付需要的信息:
  19. * trade_no,subject,body,total_fee,notify_url
  20. *
  21. */
  22. public class PayUtils {
  23.  
  24. public static String sign(String content, String RSA_PRIVATE) {
  25. return SignUtils.sign(content, RSA_PRIVATE);
  26. }
  27.  
  28. /**
  29. * 支付宝支付
  30. * @param trade_no 订单号
  31. * @param total_fee 金额
  32. * @param subject 标题
  33. * @param body 内容
  34. * @param notify_url 回调地址
  35. * @return
  36. * @throws UnsupportedEncodingException
  37. */
  38. public static String AliPay(String trade_no, Double total_fee, String subject, String body, String notify_url) throws UnsupportedEncodingException{
  39. String orderInfo = "_input_charset=\"utf-8\"";
  40. orderInfo += "&body=" + "\"" + body + "\"";
  41. orderInfo += "&it_b_pay=\"30m\"";
  42. orderInfo += "&notify_url=" + "\"" + notify_url + "\"";
  43. orderInfo += "&out_trade_no=" + "\"" + trade_no + "\"";
  44. orderInfo += "&partner=" + "\"" + AlipayConfig.partner + "\"";
  45. orderInfo += "&payment_type=\"1\"";
  46. orderInfo += "&return_url=\"" + notify_url + "\"";
  47. orderInfo += "&seller_id=" + "\"" + AlipayConfig.seller_email + "\"";
  48. orderInfo += "&service=\"mobile.securitypay.pay\"";
  49. orderInfo += "&subject=" + "\"" + subject + "\"";
  50. String format = String.format("%.2f", total_fee);
  51. if(format.indexOf(",")>0)format = format.replace(",", ".");
  52. orderInfo += "&total_fee=" + "\"" + format+"\"";
  53. System.out.println(orderInfo);
  54. String sign = sign(orderInfo, AlipayConfig.private_key);
  55. sign = URLEncoder.encode(sign, "utf-8");
  56. return orderInfo + "&sign=\"" + sign + "\"&" + "sign_type=\"RSA\"";
  57. }
  58. }

接口controller:

  1. package com.textile.controller;
  2.  
  3. import com.rpframework.core.json.FailException;
  4. import com.rpframework.core.json.JsonResp;
  5. import com.rpframework.core.json.ParameterException;
  6. import com.rpframework.module.common.bottom.controller.BaseController;
  7. import com.rpframework.module.common.pay.alipay.util.AlipayNotify;
  8. import com.rpframework.module.common.url.RequestDescription;
  9. import com.textile.dto.MoneyDto;
  10. import com.textile.entity.MemberIntroduction;
  11. import com.textile.entity.MoneyRecord;
  12. import com.textile.entity.User;
  13. import com.textile.service.MemberIntroductionService;
  14. import com.textile.service.MoneyRecordService;
  15. import com.textile.service.UserService;
  16. import com.textile.util.PayUtils;
  17. import org.springframework.beans.factory.annotation.Autowired;
  18. import org.springframework.stereotype.Controller;
  19. import org.springframework.transaction.annotation.Transactional;
  20. import org.springframework.web.bind.annotation.RequestMapping;
  21. import org.springframework.web.bind.annotation.ResponseBody;
  22.  
  23. import javax.servlet.http.HttpServletRequest;
  24. import java.io.ByteArrayOutputStream;
  25. import java.io.IOException;
  26. import java.io.InputStream;
  27. import java.math.BigDecimal;
  28. import java.util.*;
  29.  
  30. /**
  31. * Created by bin on 2016/11/16.
  32. */
  33. @ResponseBody
  34. @Controller
  35. @RequestMapping
  36. public class MoneyController {
  37.  
  38. //http://139.224.42.24:8899
  39. //http://tt.tunnel.2bdata.com
  40. public static String alinotify = "/api/json/money/alipay/succ";
  41.  
  42. @RequestMapping
  43. @RequestDescription("支付宝支付回调地址")
  44. @Transactional(rollbackFor = Throwable.class)
  45. public String alipaySucc(HttpServletRequest request) throws IOException {
  46. System.out.println("支付宝回调");
  47. Map<String, String> params = new HashMap<>();
  48. Map<String, String[]> requestParams = request.getParameterMap();
  49. for (Iterator<String> iter = requestParams.keySet().iterator(); iter.hasNext();) {
  50. String name = iter.next();
  51. String[] values = requestParams.get(name);
  52. String valueStr = "";
  53. for (int i = 0; i < values.length; i++) {
  54. valueStr = (i == values.length - 1) ? valueStr + values[i] : valueStr + values[i] + ",";
  55. }
  56. // 乱码解决,这段代码在出现乱码时使用。如果mysign和sign不相等也可以使用这段代码转化
  57. // valueStr = new String(valueStr.getBytes("ISO-8859-1"), "gbk");
  58. params.put(name, valueStr);
  59. }
  60. //String out_trade_no = request.getParameter("out_trade_no");// 商户订单号
  61.  
  62. //获取支付宝的通知返回参数,可参考技术文档中页面跳转同步通知参数列表(以下仅供参考)//
  63. //商户订单号
  64.  
  65. //String out_trade_no = new String(request.getParameter("out_trade_no").getBytes("ISO-8859-1"),"UTF-8");
  66.  
  67. //支付宝交易号
  68.  
  69. //String trade_no = new String(request.getParameter("trade_no").getBytes("ISO-8859-1"),"UTF-8");
  70.  
  71. //交易状态
  72. String trade_status = new String(request.getParameter("trade_status").getBytes("ISO-8859-1"),"UTF-8");
  73.  
  74. //获取支付宝的通知返回参数,可参考技术文档中页面跳转同步通知参数列表(以上仅供参考)//
  75.  
  76. if(AlipayNotify.verify(params)){//验证成功
  77. //////////////////////////////////////////////////////////////////////////////////////////
  78. //请在这里加上商户的业务逻辑程序代码
  79.  
  80. //——请根据您的业务逻辑来编写程序(以下代码仅作参考)——
  81.  
  82. if(trade_status.equals("TRADE_FINISHED")){
  83. //判断该笔订单是否在商户网站中已经做过处理
  84. //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序
  85. //请务必判断请求时的total_fee、seller_id与通知时获取的total_fee、seller_id为一致的
  86. //如果有做过处理,不执行商户的业务程序
  87.  
  88. //注意:
  89. //退款日期超过可退款期限后(如三个月可退款),支付宝系统发送该交易状态通知
  90. } else if (trade_status.equals("TRADE_SUCCESS")){
  91. //判断该笔订单是否在商户网站中已经做过处理
  92. //如果没有做过处理,根据订单号(out_trade_no)在商户网站的订单系统中查到该笔订单的详细,并执行商户的业务程序
  93. //请务必判断请求时的total_fee、seller_id与通知时获取的total_fee、seller_id为一致的
  94. //如果有做过处理,不执行商户的业务程序
  95.  
  96. //注意:
  97. //付款完成后,支付宝系统发送该交易状态通知
  98.  
  99. String total_fee = params.get("total_fee");
  100. Long userId = Long.valueOf(params.get("out_trade_no").split("O")[0]);
  101. //updateUserPay(userId, total_fee);
  102. return "success";
  103. }
  104. //——请根据您的业务逻辑来编写程序(以上代码仅作参考)——
  105. //////////////////////////////////////////////////////////////////////////////////////////
  106. }else{//验证失败
  107. System.out.println("+++++++++++++++++++=验证失败");
  108. return "fail";
  109. }
  110. return "fail";
  111. }
  112.  
  113.   /*
  114. private void updateUserPay(Long userId, String total_fee) {
  115. User user = userService.selectByPrimaryKey(userId);
  116.  
  117. if (user != null) {
  118. user.setPassword(null);
  119. //余额
  120. BigDecimal account = user.getAccount() == null ? BigDecimal.valueOf(0.00) : user.getAccount();
  121. user.setAccount(account.add(BigDecimal.valueOf(Double.valueOf(total_fee))));
  122. //积分
  123. //BigDecimal integral = user.getIntegral() == null ? BigDecimal.valueOf(0.00) : user.getIntegral();
  124. //user.setIntegral(integral.add(BigDecimal.valueOf(Double.valueOf(total_fee))));
  125. int i = userService.updateByPrimaryKeySelective(user);
  126. if (i <= 0) {
  127. log.debug("更新用户出错");
  128. }
  129.  
  130. //充值记录
  131. MoneyRecord moneyRecord = new MoneyRecord();
  132. moneyRecord.setTitle("充值");
  133. moneyRecord.setType(1);
  134. moneyRecord.setMoneyChange("+" + total_fee);
  135. moneyRecord.setUserId(userId);
  136.  
  137. moneyRecordService.insertJson(moneyRecord);
  138. log.debug("记录添加成功");
  139. }
  140. }
  141.   */
  142.  
  143. @RequestMapping
  144. @RequestDescription("支付宝充值")
  145. @Transactional(rollbackFor = Throwable.class)
  146. public JsonResp<?> getAlipayOrderSign(Double money, HttpServletRequest request) throws Exception {
  147. String sym = request.getRequestURL().toString().split("/api/")[0];
  148. Long userId = baseController.getUserId();
  149. String trade_no0 = userId + "O" + UUID.randomUUID().toString().replaceAll("-", "").toLowerCase();
  150. String trade_no = trade_no0.substring(0,32);
  151. String stringStringMap = null;
  152. stringStringMap = PayUtils.AliPay(
  153. trade_no,
  154. money,      //金额
  155. "纺织达人充值", //订单名称
  156. "纺织达人充值", //订单说明
  157. sym + alinotify //回调哪个方法
  158. );
  159. if (stringStringMap != null) {
  160. str = stringStringMap.substring(17,stringStringMap.length()-3);
  161. }
  162.  
  163. JsonResp<String> jsonResp = new JsonResp<>();
  164. if (stringStringMap != null) {
  165. return jsonResp.data(stringStringMap);
  166. }else {
  167. throw new FailException();
  168. }
  169.  
  170. }
  171.  
  172. }

官方文档: https://doc.open.alipay.com/docs/doc.htm?spm=a219a.7629140.0.0.VbKyV2&treeId=59&articleId=103563&docType=1

参考资料:

技术客服:
https://cschannel.alipay.com/newPortal.htm?scene=mt_zczx&token=&pointId=&enterurl=https%3A%2F%2Fsupport.open.alipay.com%2Falipay%2Fsupport%2Findex.htm

教程
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

  1.  

支付宝(移动支付)服务端java版的更多相关文章

  1. 支付宝app支付服务端流程

    支付宝APP支付服务端详解 前面接了微信支付,相比微信支付,支付宝APP支付提供了支付封装类,下面将实现支付宝APP支付.订单查询.支付结果异步通知.APP支付申请参数说明,以及服务端返回APP端发起 ...

  2. 使用DWR实现JS调用服务端Java代码

    DWR简介 DWR全称Direct Web Remoting,是一款非常优秀的远程过程调用(Remote Procedure Call)框架,通过浏览器提供的Ajax引擎实现在前端页面的JS代码中调用 ...

  3. java工具类(一)之服务端java实现根据地址从百度API获取经纬度

    服务端java实现根据地址从百度API获取经纬度 代码: package com.pb.baiduapi; import java.io.BufferedReader; import java.io. ...

  4. Python中的Tcp协议应用之TCP服务端-线程版

    利用线程实现,一个服务端同时服务多个客户端的需求. TCP服务端-线程版代码实现: import socket import threading def handle_client_socket(ne ...

  5. 微信app支付(android端+java后台)

    本文讲解使用微信支付接口完成在android开发的原生态app中完成微信支付功能, 文章具体讲解了前端android如何集成微信支付功能以及后台如何组装前端需要支付信息, 话不多话, 具体看文章内容吧 ...

  6. 客户端JavaScript加密数据,服务端Java解密数据

    原文:http://blog.csdn.net/peterwanghao/article/details/43303807 在普通的页面提交时,如果没有使用SSL,提交的数据将使用纯文本的方式发送.如 ...

  7. 微信小程序访问webservice(wsdl)+ axis2发布服务端(Java)

    0.主要思路:使用axis2发布webservice服务端,微信小程序作为客户端访问.步骤如下: 1.服务端: 首先微信小程序仅支持访问https的url,且必须是已备案域名.因此前期的服务器端工作需 ...

  8. 【gRPC】C++异步服务端优化版,多服务接口样例

    官方的C++异步服务端API样例可读性并不好,理解起来非常的费劲,各种状态机也并不明了,整个运行过程也容易读不懂,因此此处参考网上的博客进行了重写,以求顺利读懂. C++异步服务端实例,详细注释版 g ...

  9. 微信APP支付服务端开发Java版(一)

    一.准备工作 去微信开发者中心下载(扫码支付,里面的大部分代码是可以用的) https://pay.weixin.qq.com/wiki/doc/api/micropay.php?chapter=11 ...

随机推荐

  1. CSS选择器、层叠相关的基础知识

    CSS是Cascading Style Sheets的英文缩写,即层叠样式表.CSS2.1是W3C于2007年发布,现在推荐使用的.CSS3现在还处于开发中,有部分浏览器的新版本支持. 1. CSS ...

  2. Python文件遍历二种方法

    分享下有关Python文件遍历的两种方法,使用的OS模块的os.walk和os.listdir实现. 关于Python的文件遍历,大概有两种方法,一种是较为便利的os.walk(),还有一种是利用os ...

  3. [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 ...

  4. js正则匹配中文

    alert(/[\u4e00-\u9fa5]{4}/.test("司徒正美"))//true alert(/[\u4e00-\u9fa5]{4}/.test("司正美&q ...

  5. 去除img、video之间默认间隔的几种方法

    img,video{ /*第1种方式*/ border: ; vertical-align: bottom; /*第2种方式*/ outline-width:0px; vertical-align:t ...

  6. 检测SqlServer数据库是否能连接的小技巧

    有时候可能需要检测下某台机器的服务是不是起来了,或者某台机器的某个库是不是能被连接又不能打开ssms也不想登陆服务器的话就可以用这个方法. 1.在桌面上右键创建个文本,然后改后缀名为udl以后保存(1 ...

  7. 在ajax post处理文件下载

    我有一个JavaScript应用程序需要使用ajax post请求发送到某个URL,然后后端会根据请求中的参数进行相应的工作,生成一个可下载的压缩包,等待下载.必须使用的ajax的原因是这里需要模拟提 ...

  8. vim复制粘贴常用命令

    在Windows下我们习惯的操作,复制单个字符,复制单行多行,删除单行多行,在linux的vim中操作如下: G(shift+g+g):跳到文档尾 g+g:跳转到文档首 home键:光标移动到行首 e ...

  9. 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 ...

  10. dp之二维背包poj1837(天平问题 推荐)

    题意:给你c(2<=c<=20)个挂钩,g(2<=g<=20)个砝码,求在将所有砝码(砝码重1~~25)挂到天平(天平长  -15~~15)上,并使得天平平衡的方法数..... ...