자바 SSM 에서 알 리 페 이 스 스 캔 결제 기능 사용
준비 작업
우선 알 리 페 이 샌 드 박스 의 테스트 계 정 을 개설 하면 소비자 계좌 와 수금 자 계좌 가 있 습 니 다.
핸드폰 스 캔
기본 설정
필요 한 jar 패키지
AlipayConfig
package com.alipay.config;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ResourceBundle;
/* *
* :AlipayConfig
* :
* :
* :2017-04-05
* :
* , , , 。
* , 。
*/
public class AlipayConfig {
//↓↓↓↓↓↓↓↓↓↓
// ID, APPID, APPID
public static String app_id = "2016080403162340";
// , PKCS8 RSA2
public static String merchant_private_key = "MIIEvAID2tulSSmawG5+F4NZbexpnxi8NKQJPZEeAA==";
// , :https://openhome.alipay.com/platform/keyManage.htm APPID 。
public static String alipay_public_key = "MIIBIjt26tLTKar8S1ERDWI25viBcMz7PLMxVVUmHf5tdBWfbMhUs3QIDAQAB";
// http:// , ?id=123 ,
public static String notify_url = "http://localhost:8080/alipay.trade.page.pay-JAVA-UTF-8/notify_url.jsp";
// http:// , ?id=123 ,
public static String return_url = "http://localhost:8080/Exam/index/gouMai";
//
public static String sign_type = "RSA2";
//
public static String charset = "utf-8";
//
public static String gatewayUrl = "https://openapi.alipaydev.com/gateway.do";
//
public static String log_path = "E:\\";
//↑↑↑↑↑↑↑↑↑↑
/**
* , ( , )
* @param sWord
*/
public static void logResult(String sWord ) {
FileWriter writer = null;
try {
writer = new FileWriter(log_path + "alipay_log_" + System.currentTimeMillis()+".txt");
writer.write(sWord);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (writer != null) {
try {
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
Controller
// ,
@RequestMapping(value = "aliPay")
public String aliPay(HttpServletResponse response,ModelMap map,String chapterId,HttpServletRequest request,
String WIDout_trade_no,String WIDtotal_amount,String WIDsubject,String WIDbody) throws IOException, AlipayApiException{
// String a,String urlName,String couName....+"&a="+a+"&urlName="+urlName+"&couName="+couName
// 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+"?chapterId="+chapterId);
alipayRequest.setNotifyUrl(AlipayConfig.notify_url);
// ID,
String out_trade_no = WIDout_trade_no;
// ,
String total_amount = WIDtotal_amount;
total_amount=URLDecoder.decode(total_amount,"UTF-8");//
// ,
String subject = WIDsubject;
subject=URLDecoder.decode(subject,"UTF-8");
// ,
String body = WIDbody;
alipayRequest.setBizContent("{\"out_trade_no\":\""+ out_trade_no +"\","
+ "\"total_amount\":\""+ total_amount +"\","
+ "\"subject\":\""+ subject +"\","
+ "\"body\":\""+ body +"\","
+ "\"timeout_express\":\"1m\","
+ "\"product_code\":\"FAST_INSTANT_TRADE_PAY\"}");
//
String result = alipayClient.pageExecute(alipayRequest).getBody();
response.setContentType("text/html; charset=utf-8");
PrintWriter out = response.getWriter();
out.println(result);
return null;
}
지불 성공 적 으로 페이지 재생(returnurl)성공 후 되 돌아 오 는 경로,Controller 로 이동 합 니 다.AlipayConfig 의 설정 을 보십시오.
// ,
@RequestMapping(value="gouMai")
@ResponseBody
public ModelAndView gouMai(String chapterId,HttpServletRequest req,String a,String urlName,String couName,ModelMap map){
ModelAndView mav = new ModelAndView();
Map<String,String> mapp1 = new HashMap<String,String>();
// SysUserTab login_user = sysuserService.getSysUserById(userId);
HttpSession session = req.getSession();
SysUserTab login_user1 = (SysUserTab) session.getAttribute("login_user");
String userId = login_user1.getUserId();
// session.setAttribute("login_user", login_user);
mapp1.put("userId", userId);
mapp1.put("chapterId", chapterId);
int num = sysBuyService.getBuyCount(mapp1);
if(num==0){
mapp1.put("buyId", UUID.randomUUID().toString().replace("-", ""));
sysBuyService.insertBuy(mapp1);
}
//
// String fanhui = showFH(req,chapterId,urlName,couName,map, a);
mav.setViewName("jsp/pay/paySuccess");
return mav;
}
지불 성공 후 페이지 는 pay Success.jsp 페이지 로 이동 합 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.