|
@@ -15,6 +15,8 @@ import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.http.HttpHeaders;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
+import javax.servlet.http.HttpServletResponse;
|
|
|
+import java.io.IOException;
|
|
|
import java.security.NoSuchAlgorithmException;
|
|
|
import java.security.spec.InvalidKeySpecException;
|
|
|
import java.util.Map;
|
|
@@ -105,8 +107,8 @@ public class PayOrderApi {
|
|
|
@ApiOperation("支付链接重定向到页面(旧:/PayOrder/jumpPage)")
|
|
|
@ApiImplicitParam(required = false, name = "linkLogo", value = "链接标识")
|
|
|
@GetMapping("/link/jump")
|
|
|
- public String jumpPayPage(String linkLogo) {
|
|
|
- return payOrderService.jumpPayPage(linkLogo);
|
|
|
+ public void jumpPayPage(String linkLogo, HttpServletResponse response) throws IOException {
|
|
|
+ payOrderService.jumpPayPage(linkLogo, response);
|
|
|
}
|
|
|
|
|
|
/**
|