java微信支付超时_Java微信支付之关闭订单

本文介绍了在Java中如何处理微信支付的订单关闭,包括关闭订单的应用场景、接口地址、请求参数、返回结果及具体实现代码示例,帮助开发者理解如何避免重复支付和处理支付超时情况。
摘要由CSDN通过智能技术生成

本文实例为大家分享了java微信支付之关闭订单的具体代码,供大家参考,具体内容如下

一、应用场景

商户订单支付失败需要生成新单号重新发起支付,要对原订单号调用关单,避免重复支付

系统下单后,用户支付超时,系统退出不再受理,避免用户继续,请调用关单接口

注意:订单生成后不能马上调用关单接口,最短调用时间间隔为5分钟。

二、接口地址

https://api.mch.weixin.qq.com/pay/closeorder

三、请求参数

只能根据自己商户系统的订单号关闭

package com.phil.wechatpay.model.rep;

import java.io.serializable;

/**

* 关闭订单请求参数(正常xml)

* @author phil

* @date 2017年7月25日

*

*/

public class closeorderparams extends abstractpayparams implements serializable{

/**

*

*/

private static final long serialversionuid = -4206464928803827244l;

private string out_trade_no; //商户订单号

public string getout_trade_no() {

return out_trade_no;

}

public void setout_trade_no(string out_trade_no) {

this.out_trade_no = out_trade_no;

}

}

四、返回结果

package com.phil.wechatpay.model.resp;

import java.io.serializable;

import com.phil.common.annotation.notrequire;

/**

* 关闭订单返回参数(带xml格式)

*

* @author phil

* @date 2017年7月25日

*

*/

public class closeorderresult extends abstractpayresult implements serializable {

private static final long serialversionuid = -1996103742747816922l;

private string return_code; // 返回状态码success/fail

@notrequire

private string return_msg; //返回信息

/**** return_code 为success ****/

private string result_code;// 业务结果

private string result_msg;// 业务结果描述

@notrequire

private string err_code;// 错误返回的信息描述

@notrequire

private string err_code_des;// 错误返回的信息描述

}

五、关闭订单

package com.phil.wechatpay.controller;

import javax.servlet.http.httpservletrequest;

import javax.servlet.http.httpservletresponse;

import org.springframework.beans.factory.annotation.autowired;

import org.springframework.stereotype.controller;

import org.springframework.web.bind.annotation.requestmapping;

import org.springframework.web.bind.annotation.responsebody;

import com.phil.common.config.wechatconfig;

import com.phil.common.util.httprequtil;

import com.phil.common.util.payutil;

import com.phil.common.util.signatureutil;

import com.phil.common.util.xmlutil;

import com.phil.wechatpay.model.rep.closeorderparams;

import com.phil.wechatpay.model.resp.closeorderresult;

import com.phil.wechatpay.service.wechatpayservice;

/**

* 关闭订单

* @author phil

* @date 2017年7月25日

*

*/

@controller

@requestmapping("/wxpay/")

public class wechatpaycloseordercontroller {

@autowired

private wechatpayservice wechatpayservice;

@responsebody

@requestmapping("closeorder")

public closeorderresult closeorder(httpservletrequest request, httpservletresponse response) throws exception {

closeorderresult closeorderresult = null;

closeorderparams closeorderparams = new closeorderparams();

closeorderparams.setappid(wechatconfig.app_id);

closeorderparams.setmch_id(wechatconfig.mch_id);

closeorderparams.setnonce_str(payutil.createnoncestr());

closeorderparams.setout_trade_no("");//自己传入

//请求的xml

string closeorderxml = wechatpayservice.abstractpaytoxml(closeorderparams);//签名合并到service

// 返回格式的xml

string closeorderresultxml = httprequtil.httpsdefaultexecute(httprequtil.post_method,wechatconfig.close_order_url, null, closeorderxml);

// 进行签名校验

if (signatureutil.checkissignvalidfromweixin(closeorderresultxml)) {

closeorderresult = xmlutil.getobjectfromxml(closeorderresultxml, closeorderresult.class);

}

return closeorderresult;

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持萬仟网。

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值