generated from root/miduo_server
37 lines
1.1 KiB
Java
37 lines
1.1 KiB
Java
package com.jmfy.controller;
|
|
|
|
import com.jmfy.paramBean.PaySdkEnum;
|
|
import com.jmfy.util.JsonUtil;
|
|
import com.jmfy.util.MD5Util;
|
|
import org.dom4j.Document;
|
|
import org.dom4j.DocumentException;
|
|
import org.dom4j.Element;
|
|
import org.dom4j.io.SAXReader;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.xml.sax.InputSource;
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import java.io.StringReader;
|
|
import java.util.*;
|
|
import java.util.regex.Matcher;
|
|
import java.util.regex.Pattern;
|
|
|
|
/**
|
|
* 疯体使用quick sdk
|
|
*/
|
|
@RestController
|
|
@Deprecated
|
|
public class QuickRechargeController3 {
|
|
private static final String callbackkey = "53780900079388195716762718742907";
|
|
private static final String md5key = "giahggkise4k7hef3qir4adbrmcejdrz";
|
|
|
|
@RequestMapping(value = "/Web/QUICKCallback3")
|
|
public String QuickGnCallback(HttpServletRequest request) throws Exception {
|
|
return QuickRechargeController.process(request,callbackkey,md5key);
|
|
}
|
|
}
|