resteasy 银联获取得到html脚本的代码直接浏览器中打开,跳像新页面

resteasy 银联获取得到html脚本的代码直接浏览器中打开,跳像新页面。


@GET
@Path("/bindCardHtml")
@Produces("text/html;charset=utf-8")
@ApiOperation(value = "")
public String bindCardHtml(@Context HttpServletResponse response) throws IOException {
    // resp.setContentType("text/html; charset=" + DemoBase.encoding);
    String merId = SDKConfig.getConfig().getMerId();// req.getParameter("merId");
    String orderId = IdUtil.simpleUUID(); // req.getParameter("orderId");
    log.info("orderId===" + orderId);
    ....
String html = AcpService.createAutoFormHtml(requestFrontUrl, reqData, SDKConfig.getConfig().getEncoding()); 
// 生成自动跳转的Html表单

LogUtil.writeLog("打印请求HTML,此为请求报文,为联调排查问题的依据:" + html);
// response.getWriter().write(html);
return html;

你可能感兴趣的:(web技术类)