wuxw7
2018-06-17 288d590fbca6f7d884b7398d4c0e1921b04e128d
java110-core/src/main/java/com/java110/core/base/controller/BaseController.java
@@ -94,7 +94,7 @@
        headers.put("IP",getIpAddr(request));
        headers.put("hostName",request.getLocalName());
        headers.put("port",request.getLocalPort());
        headers.put("port",request.getLocalPort()+"");
    }
@@ -214,7 +214,7 @@
     * @return
     * @throws Exception
     */
    protected BusinessServiceDataFlow writeDataToDataFlowContext(String reqJson, Map<String,String> headers) throws InitDataFlowContextException {
    protected BusinessServiceDataFlow writeDataToDataFlowContext(String reqJson, Map<String,String> headers) throws Exception {
        BusinessServiceDataFlow businessServiceDataFlow = DataFlowFactory.newInstance(BusinessServiceDataFlow.class).builder(reqJson,headers);
        return businessServiceDataFlow;
    }