자바 SSM 에서 알 리 페 이 스 스 캔 결제 기능 사용

6618 단어 자바알 리 페 이
본 논문 의 사례 는 자바 가 알 리 페 이 스 스 캔 코드 를 사용 하여 지불 하 는 구체 적 인 코드 를 공유 하 였 으 며,여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
준비 작업
우선 알 리 페 이 샌 드 박스 의 테스트 계 정 을 개설 하면 소비자 계좌 와 수금 자 계좌 가 있 습 니 다.

핸드폰 스 캔

기본 설정
필요 한 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 페이지 로 이동 합 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기