月球大数据地理空间分析展示平台-【后端】-月球后台服务
13693261870
2023-07-11 8500216eee0eb666a511f35ed06ab156b0573ee1
src/main/java/com/moon/server/service/sys/ProxyService.java
@@ -62,7 +62,8 @@
        insertLog(req, ue, resId);
        String url = getSourceUrl(req, entity, token);
        forward(req, res, url);
        res.setHeader("token", token);
        forward(req, res, entity, url);
    }
    /**
@@ -237,8 +238,8 @@
    /**
     * 转发请求
     */
    private void forward(HttpServletRequest request, HttpServletResponse response, String url) throws Exception {
    private void forward(HttpServletRequest request, HttpServletResponse response, ResEntity entity, String url) throws Exception {
        HttpHelper httpHelper = new HttpHelper();
        httpHelper.service(request, response, url, null);
        httpHelper.service(request, response, entity, url);
    }
}