沙箱账号申请

项目使用阿里提供的沙箱环境做开发,首先需要申请沙箱账号,使用沙箱账号登录安装的沙箱版支付宝

手机网站支付快速接入文档

申请沙箱账号

在沙箱应用中可以找到:APPID、应用私钥、支付宝公钥、支付宝网关地址

配置文件

配置基本的参数:

AlipayConfig
/**
* 支付宝配置参数
*/
public class AlipayConfig {
// 服务器异步通知页面路径 需http://或者https://格式的完整路径,不能加?id=123这类自定义参数,必须外网可以正常访问
public static String notify_url = "http://hgg77b.natappfree.cc/orders/paynotify";
// 页面跳转同步通知页面路径 需http://或者https://格式的完整路径,不能加?id=123这类自定义参数,必须外网可以正常访问 商户可以自定义同步跳转地址
public static String return_url = "http://商户网关地址/alipay.trade.wap.pay-JAVA-UTF-8/return_url.jsp";
// 请求网关地址
public static String URL = "https://openapi-sandbox.dl.alipaydev.com/gateway.do";
// 编码
public static String CHARSET = "UTF-8";
// 返回格式
public static String FORMAT = "json";
// 支付宝公钥
// public static String ALIPAY_PUBLIC_KEY = "";
// 日志记录目录
public static String log_path = "/log";
// RSA2
public static String SIGNTYPE = "RSA2";
}