zoukankan      html  css  js  c++  java
  • HttpServletRequest  通用的post 请求

    @Context
    private MessageContext context;



    public HttpServletRequest getRequest(){ HttpServletRequest request = (HttpServletRequest) context .get(AbstractHTTPDestination.HTTP_REQUEST); return request; } public String getUserName(HttpServletRequest request){ String userName = request.getHeader("userName"); return userName; }

    通用的post 请求

        @ApiOperation(value = "common data reception for 3rd party ")
        @PostMapping(value = "/receptionData")
        public Callable<Object> receptionData(HttpServletRequest request) {
    
            Callable<Object> result = new Callable<Object>()
            {
                @Override
                public Object call() throws Exception
                {
                    log.info("enter into  CommonDataReceptionFor3rdController class ==>getrequest methoed ");
                    // get all header info
                    log.info("==>>Request Content Type is {} ", request.getContentType());
                    Enumeration<String> requestHeader = request.getHeaderNames();
    //                    Map<String, String[]> parameterMap = request.getParameterMap();
                    JSONObject parameterMap;
                    ServletInputStream inputSteam = request.getInputStream();
                    if ("application/json".equalsIgnoreCase(request.getContentType())){//json
                 if(inputSteam==null){ return ResultUtils.resultFail(400,"请求无效" , null,"");}  parameterMap
    = JSON.parseObject(IOUtils.toString(inputSteam,StandardCharsets.UTF_8.name())); }else{ //表单提交 parameterMap=ServletRequestUtil.getRequestParameter(request.getParameterMap()); } JSONObject header = new JSONObject(); while (requestHeader.hasMoreElements()) { String headerKey = requestHeader.nextElement().toString(); // System.err.println("headerKey="+headerKey+";value="+request.getHeader(headerKey)); header.put(headerKey, request.getHeader(headerKey)); } String platform = header.getString(HEADER_KEY_PLATFORM); if (StringUtils.isBlank(platform)) { String message = "request header must have headerKey:platform"; log.error("request header must have headerKey:platform"); log.error("the request data is :{}",message); return ResultUtils.resultFail(HttpServletResponse.SC_CREATED, message, null,platform); } try { String parameJson = (!parameterMap.isEmpty()) ? parameterMap.toJSONString() : ""; log.info("==>>Request Request Parameter is {} ", parameJson); dataDistributionService.dataDistribution(platform, parameJson); } catch (Exception e) { String message = "send data to kafka fail and exception :"+e; log.error("the request data is :{}",message); log.error("send data to kafka fail and exception :"+e); log.info("enter into CommonDataReceptionFor3rdController class ==>getrequest methoed "); return ResultUtils.resultFail(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, message, null,platform); } log.info("save data to kafka success"); log.info("end the CommonDataReceptionFor3rdController class =>getrequest methoed "); return ResultUtils.resultOk("success", null,platform); } }; return result; }
    @Slf4j
    public class ServletRequestUtil {
        public static JSONObject responseOk(String mesg) {
            JSONObject response = new JSONObject();
            response.put(Constant.STATUS_CODE, Constant.SUCCESS_CODE);
            response.put(Constant.STATUS_MSG, "Process request successfully");
            return response;
        }
    
        public static JSONObject getRequestParameter(Map<String, String[]> parameterMap) {//String[] 一般只有一个
            log.debug("------- parameter -------");
            JSONObject parameter = new JSONObject();
            for (String key : parameterMap.keySet()) {
                for (int i = 0; i < parameterMap.get(key).length; i++) {
                    log.debug("key=" + key + ";value=" + parameterMap.get(key)[i].toString());
                    parameter.put(key, parameterMap.get(key)[i].toString());
                }
            }        return parameter;
        }
       
    }
  • 相关阅读:
    RCNN:Rich feature hierarchies for accurate oject detection and semantic segmentation
    MobileNet v3:Searching for MobileNetV3
    ShuffleNet V2: Practical Guidelines for Efficient CNN Architecture Design
    Squeeze-and-Excitation Networks
    MobileNetV2: Inverted Residuals and Linear Bottlenecks
    ShuffleNet: An Extremely Efficient Convolutional Neural Network for Mobile Devices
    MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications
    左侧固定右侧自适应
    正则
    还能输入多少字
  • 原文地址:https://www.cnblogs.com/lshan/p/10044438.html
Copyright © 2011-2022 走看看