com.alipay.api.domain.AlipayTradePagePayModel Java Examples

The following examples show how to use com.alipay.api.domain.AlipayTradePagePayModel. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AlipayPagePayController.java    From springboot-pay-example with Apache License 2.0 6 votes vote down vote up
@PostMapping("/gotoPayPage")
public void gotoPayPage(HttpServletResponse response) throws AlipayApiException, IOException {
    // 订单模型
    String productCode = "FAST_INSTANT_TRADE_PAY";
    AlipayTradePagePayModel model = new AlipayTradePagePayModel();
    model.setOutTradeNo(UUID.randomUUID().toString());
    model.setSubject("支付测试");
    model.setTotalAmount("0.01");
    model.setBody("支付测试,共0.01元");
    model.setProductCode(productCode);

    AlipayTradePagePayRequest pagePayRequest =new AlipayTradePagePayRequest();
    pagePayRequest.setReturnUrl("http://s9v2cw.natappfree.cc/alipay/page/returnUrl");
    pagePayRequest.setNotifyUrl(alipayProperties.getNotifyUrl());
    pagePayRequest.setBizModel(model);

    // 调用SDK生成表单, 并直接将完整的表单html输出到页面
    String form = alipayClient.pageExecute(pagePayRequest).getBody();
    response.setContentType("text/html;charset=" + alipayProperties.getCharset());
    response.getWriter().write(form);
    response.getWriter().flush();
    response.getWriter().close();
}
 
Example #2
Source File: PagePayChain.java    From alipay with Apache License 2.0 4 votes vote down vote up
public PagePayChain(AlipayClient alipayClient, AlipayTradePagePayModel alipayTradePagePayModel) {
    this.alipayClient = alipayClient;
    this.alipayTradePagePayModel = alipayTradePagePayModel;
}