赞
踩
支付宝在APP支付完成后,需要支付宝主动调用notify_url进行业务的处理。当支付宝通知失败后,会不断的发起通知,知道通知成功,这样保证了业务的正常执行。代码如下(后台回调代码):
1、下载支付宝的sdk。(在我的资源中有上传)
2、实现代码(共6个类):AlipayConfig(配置类)、AlipayController(接口类)、AlipayCore、AlipayNotify、Base64、RSA后四个类都为支付宝自带的实现类。
package com.alice.app.controller.notify.alipay;
/* *
*类名:AlipayConfig
*功能:基础配置类
*详细:设置帐户有关信息及返回路径
*版本:3.3
*日期:2012-08-10
*说明:
*/
public class AlipayConfig {
// 合作身份者ID,签约账号,以2088开头由16位纯数字组成的字符串,查看地址:https://b.alipay.com/order/pidAndKey.htm
public static String partner = "xxxxxxxxxxxxxxxx";
//商户的私钥,需要PKCS8格式,RSA公私钥生成:https://doc.open.alipay.com/doc2/detail.htm?spm=a219a.7629140.0.0.nBDxfy&treeId=58&articleId=103242&docType=1
public static String private_key = "xxxxxxx";
//沙箱环境
// public static String private_key="xxxxxxxxx" ;
// 收款支付宝账号,以2088开头由16位纯数字组成的字符串,一般情况下收款账号就是签约账号
public static String seller_id = "xxxxxxxxxxxxx" ;
// 支付宝的公钥,查看地址:https://b.alipay.com/order/pidAndKey.htm
public static String alipay_public_key = "xxxxxxxxxxxxxxxx";
// 调试用,创建TXT日志文件夹路径
public static String log_path = "D:\\";
// 字符编码格式 目前支持 gbk 或 utf-8
public static String input_charset = "utf-8";
// 签名方式 不需修改
public static String sign_type = "RSA";
// 支付类型 ,无需修改
public static String payment_type = "1";
// 调用的接口名,无需修改
public static String service = "create_direct_pay_by_user";
public static String notify_url = "http://xxxxxxxx/xxxxxxx/notify/payNotify" ;
}
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@RequestMapping("/notify")
public class AlipayController {
@RequestMapping(value = { "/getPayNotify" }, method = { RequestMethod.POST })
@ResponseBody
public String getPayNotify(HttpServletRequest request) throws Exception {
Map<String,String> params = new HashMap<String,String>();
Map requestParams = request.getParameterMap();
for (Iterator iter = requestParams.keySet().iterator(); iter.hasNext();) {
String name = (String) iter.next();
String[] values = (String[]) 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 = 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");
//异步通知ID
String notify_id=request.getParameter("notify_id");
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。