文章有不當之處,歡迎指正,如果喜歡微信閱讀,你也可以關注我的微信公眾號:
好好學java
,獲取優質學習資源。
一、支付寶測試環境程式碼測試
1.下載電腦網站的官方demo:
下載地址:https://docs.open.alipay.com/270/106291/
2.下載解壓匯入eclipse
readme.txt請好好看一下。
只有一個Java配置類,其餘都是JSP。
3.配置AlipayConfig
(1).註冊螞蟻金服開發者賬號(免費,不像蘋果會收取費用)
註冊地址:https://open.alipay.com ,用你的支付寶賬號掃碼登入,完善個人資訊,選擇服務型別(我選的是自研)。
(2).設定app_id和gatewayUrl
其中金鑰需要自己生成,appID和支付寶閘道器是已經給好的,閘道器有dev字樣,表明是用於開發測試。
(3).設定金鑰
點選“生成方法”,開啟介面如下:
下週金鑰生成工具,解壓開啟後,選擇2048位生成金鑰:
如果沒有設定過,此時顯示文字是“設定應用公鑰”,我這裡是已經設定過得。
設定方法,“開啟金鑰檔案路徑”:
複製應用公鑰2048.txt中的內容到點選“設定應用公鑰”的彈出框中,儲存:
-
商戶私鑰(merchant_private_key)
複製 應用私鑰2048.txt 中的內容到merchant_private_key中。
-
支付寶公鑰(alipay_public_key)
點選如上圖連結,複製彈出框裡面的內容到alipay_public_key。
如果這個設定不對,結果是:支付成功,但是驗籤失敗。
如果是正式環境,需要上傳到對應的應用中:
(4).伺服器非同步通知頁面路徑(notify_url)
如果沒有改名,修改IP和埠號就可以了,我自己的如下:
http://localhost:8080/alipay.trade.page.pay-JAVA-UTF-8/notify_url.jsp
複製程式碼
(5).頁面跳轉同步通知頁面路徑(return_url)
http://localhost:8080/alipay.trade.page.pay-JAVA-UTF-8/return_url.jsp
複製程式碼
4.測試執行
測試用的支付寶買家賬戶可以在“沙箱賬號”這個頁面可以找到:
支付成功後,驗簽結果:
問題解決
由於我們使用的是沙箱測試環境,測試環境和正式上線的環境的閘道器是不一樣的,如果配置錯誤,會出現,appid錯誤的問題。配置如下:
原始碼下載
https://github.com/OUYANGSIHAI/sihai-maven-ssm-alipay
二、將支付寶支付整合到ssm框架
1、專案架構
- 專案架構:spring+springmvc+mybatis
- 資料庫:mysql
- 部署環境:tomcat9.0
- 開發環境:jdk9、idea
- 支付:支付寶、微信
整合到ssm一樣,我們需要像沙箱測試環境一樣,需要修改支付的配置資訊
2、資料庫程式碼
主要包括以下的資料庫表:
- user:使用者表
- order:支付產生的訂單
- flow:流水賬
- product:商品表:用於模擬購買商品。
drop table if exists user;
/*==============================================================*/
/* Table: user */
/*==============================================================*/
create table user
(
id varchar(20) not null,
username varchar(128),
sex varchar(20),
primary key (id)
);
alter table user comment '使用者表';
CREATE TABLE `flow` (
`id` varchar(20) NOT NULL,
`flow_num` varchar(20) DEFAULT NULL COMMENT '流水號',
`order_num` varchar(20) DEFAULT NULL COMMENT '訂單號',
`product_id` varchar(20) DEFAULT NULL COMMENT '產品主鍵ID',
`paid_amount` varchar(11) DEFAULT NULL COMMENT '支付金額',
`paid_method` int(11) DEFAULT NULL COMMENT '支付方式\r\n 1:支付寶\r\n 2:微信',
`buy_counts` int(11) DEFAULT NULL COMMENT '購買個數',
`create_time` datetime DEFAULT NULL COMMENT '建立時間',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='流水錶';
CREATE TABLE `orders` (
`id` varchar(20) NOT NULL,
`order_num` varchar(20) DEFAULT NULL COMMENT '訂單號',
`order_status` varchar(20) DEFAULT NULL COMMENT '訂單狀態\r\n 10:待付款\r\n 20:已付款',
`order_amount` varchar(11) DEFAULT NULL COMMENT '訂單金額',
`paid_amount` varchar(11) DEFAULT NULL COMMENT '實際支付金額',
`product_id` varchar(20) DEFAULT NULL COMMENT '產品表外來鍵ID',
`buy_counts` int(11) DEFAULT NULL COMMENT '產品購買的個數',
`create_time` datetime DEFAULT NULL COMMENT '訂單建立時間',
`paid_time` datetime DEFAULT NULL COMMENT '支付時間',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='訂單表';
CREATE TABLE `product` (
`id` varchar(20) NOT NULL,
`name` varchar(20) DEFAULT NULL COMMENT '產品名稱',
`price` varchar(11) DEFAULT NULL COMMENT '價格',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='產品表 ';
複製程式碼
3、dao資料介面層
這裡就不介紹了,這個只包括簡單的curd,可以使用通用mapper
,或者逆向工程
就行。
以訂單order為例給出:
public interface OrdersMapper {
int countByExample(OrdersExample example);
int deleteByExample(OrdersExample example);
int deleteByPrimaryKey(String id);
int insert(Orders record);
int insertSelective(Orders record);
List<Orders> selectByExample(OrdersExample example);
Orders selectByPrimaryKey(String id);
int updateByExampleSelective(@Param("record") Orders record, @Param("example") OrdersExample example);
int updateByExample(@Param("record") Orders record, @Param("example") OrdersExample example);
int updateByPrimaryKeySelective(Orders record);
int updateByPrimaryKey(Orders record);
}
複製程式碼
**注意:**原始碼最後給出。
4、service層
同上,最後在專案原始碼裡可見。
以訂單order為例給出:
/**
* 訂單操作 service
* @author ibm
*
*/
public interface OrdersService {
/**
* 新增訂單
* @param order
*/
public void saveOrder(Orders order);
/**
*
* @Title: OrdersService.java
* @Package com.sihai.service
* @Description: 修改叮噹狀態,改為 支付成功,已付款; 同時新增支付流水
* Copyright: Copyright (c) 2017
* Company:FURUIBOKE.SCIENCE.AND.TECHNOLOGY
*
* @author sihai
* @date 2017年8月23日 下午9:04:35
* @version V1.0
*/
public void updateOrderStatus(String orderId, String alpayFlowNum, String paidAmount);
/**
* 獲取訂單
* @param orderId
* @return
*/
public Orders getOrderById(String orderId);
}
複製程式碼
4、支付寶支付controller(支付流程)
支付流程圖
首先,啟動專案後,輸入http://localhost:8080/,會進入到商品頁面,如下:
下面是頁面程式碼
商品頁面(products.jsp)
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<script src="<%=request.getContextPath() %>/static/js/jquery.min.js" type="text/javascript"></script>
<html>
<head>
</head>
<body>
<table>
<tr>
<td>
產品編號
</td>
<td>
產品名稱
</td>
<td>
產品價格
</td>
<td>
操作
</td>
</tr>
<c:forEach items="${pList }" var="p">
<tr>
<td>
${p.id }
</td>
<td>
${p.name }
</td>
<td>
${p.price }
</td>
<td>
<a href="<%=request.getContextPath() %>/alipay/goConfirm.action?productId=${p.id }">購買</a>
</td>
</tr>
</c:forEach>
</table>
<input type="hidden" id="hdnContextPath" name="hdnContextPath" value="<%=request.getContextPath() %>"/>
</body>
</html>
<script type="text/javascript">
$(document).ready(function() {
var hdnContextPath = $("#hdnContextPath").val();
});
</script>
複製程式碼
點選上面的購買,進入到訂單頁面
填寫個數,然後點選生成訂單,呼叫如下程式碼
根據SID
(生成id的工具)等資訊生成訂單,儲存到資料庫。
進入到選擇支付頁面
呼叫瞭如下程式碼:
然後,我們選擇支付寶支付,進入到了我們支付的頁面了,大功告成!
呼叫瞭如下程式碼:
/**
*
* @Title: AlipayController.java
* @Package com.sihai.controller
* @Description: 前往支付寶第三方閘道器進行支付
* Copyright: Copyright (c) 2017
* Company:FURUIBOKE.SCIENCE.AND.TECHNOLOGY
*
* @author sihai
* @date 2017年8月23日 下午8:50:43
* @version V1.0
*/
@RequestMapping(value = "/goAlipay", produces = "text/html; charset=UTF-8")
@ResponseBody
public String goAlipay(String orderId, HttpServletRequest request, HttpServletRequest response) throws Exception {
Orders order = orderService.getOrderById(orderId);
Product product = productService.getProductById(order.getProductId());
//獲得初始化的AlipayClient
AlipayClient alipayClient = new DefaultAlipayClient(AlipayConfig.gatewayUrl, AlipayConfig.app_id, AlipayConfig.merchant_private_key, "json", AlipayConfig.charset, AlipayConfig.alipay_public_key, AlipayConfig.sign_type);
//設定請求引數
AlipayTradePagePayRequest alipayRequest = new AlipayTradePagePayRequest();
alipayRequest.setReturnUrl(AlipayConfig.return_url);
alipayRequest.setNotifyUrl(AlipayConfig.notify_url);
//商戶訂單號,商戶網站訂單系統中唯一訂單號,必填
String out_trade_no = orderId;
//付款金額,必填
String total_amount = order.getOrderAmount();
//訂單名稱,必填
String subject = product.getName();
//商品描述,可空
String body = "使用者訂購商品個數:" + order.getBuyCounts();
// 該筆訂單允許的最晚付款時間,逾期將關閉交易。取值範圍:1m~15d。m-分鐘,h-小時,d-天,1c-當天(1c-當天的情況下,無論交易何時建立,都在0點關閉)。 該引數數值不接受小數點, 如 1.5h,可轉換為 90m。
String timeout_express = "1c";
alipayRequest.setBizContent("{\"out_trade_no\":\""+ out_trade_no +"\","
+ "\"total_amount\":\""+ total_amount +"\","
+ "\"subject\":\""+ subject +"\","
+ "\"body\":\""+ body +"\","
+ "\"timeout_express\":\""+ timeout_express +"\","
+ "\"product_code\":\"FAST_INSTANT_TRADE_PAY\"}");
//請求
String result = alipayClient.pageExecute(alipayRequest).getBody();
return result;
}
複製程式碼
這段程式碼都可以在阿里支付的demo裡面找到的,只需要複製過來,然後改改,整合到ssm環境即可。
上面就是將阿里支付寶支付整合到ssm的全過程了,如果還有什麼疑問,可以留言或者私信我!
原始碼下載(ssm)
https://github.com/OUYANGSIHAI/sihai-maven-ssm-alipay