Commit 64897ccb by guojuxing

test log

parent b5760b26
......@@ -8,6 +8,7 @@ import com.gic.commons.annotation.HeaderSignIgnore;
import com.gic.download.utils.log.LogUtils;
import com.gic.enterprise.utils.UserDetailUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.http.client.methods.HttpPost;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
......@@ -52,8 +53,8 @@ public class GicTicketController {
@RequestMapping("/get-gic-service-select")
@IgnoreLogin
@HeaderSignIgnore
public RestResponse getGicServiceSelect(HttpServletRequest request) {
LOGGER.info("测试参数:{}", JSON.toJSONString(request));
public RestResponse getGicServiceSelect(HttpPost httpPost) {
LOGGER.info("测试参数:{}", JSON.toJSONString(httpPost.getEntity()));
return ResultControllerUtils.commonResult(udeskBaseApiService.getGicServiceSelect());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment