package com.java110.service.api; import com.java110.common.constant.CommonConstant; import com.java110.common.constant.ResponseConstant; import com.java110.common.util.Assert; import com.java110.core.factory.DataQueryFactory; import com.java110.core.factory.DataTransactionFactory; import com.java110.core.base.controller.BaseController; import com.java110.entity.service.DataQuery; import com.java110.service.smo.IQueryServiceSMO; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiOperation; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletRequest; import java.util.HashMap; import java.util.Map; /** * 查询服务 * Created by wuxw on 2018/4/20. */ @RestController @Api(value = "查询业务统一提供服务") public class BusinessApi extends BaseController { private final static Logger logger = LoggerFactory.getLogger(BusinessApi.class); @Autowired private IQueryServiceSMO queryServiceSMOImpl; @RequestMapping(path = "/businessApi/query",method= RequestMethod.GET) @ApiOperation(value="业务查询get请求", notes="test: 返回 2XX 表示服务正常") @ApiImplicitParam(paramType="query", name = "method", value = "用户编号", required = true, dataType = "String") @Deprecated public ResponseEntity service(HttpServletRequest request) { try { Map headers = new HashMap(); this.getRequestInfo(request, headers); Assert.isNotNull(headers, CommonConstant.HTTP_SERVICE.toLowerCase(),"请求信息中没有包含service信息"); //Assert.isNotNull(headers, CommonConstant.HTTP_PARAM,"请求信息中没有包含参数(params)信息"); Map readOnlyMap = super.getParameterStringMap(request); headers.put("params",readOnlyMap); DataQuery dataQuery = DataQueryFactory.newInstance().builder(headers); initConfig(dataQuery); queryServiceSMOImpl.commonQueryService(dataQuery); return dataQuery.getResponseEntity(); }catch (Exception e){ logger.error("请求订单异常",e); //DataTransactionFactory.createBusinessResponseJson(ResponseConstant.RESULT_CODE_ERROR,e.getMessage()+e).toJSONString(); return new ResponseEntity("请求发生异常,"+e.getMessage()+e, HttpStatus.INTERNAL_SERVER_ERROR); } } /** * { "bId":"12345678", "serviceCode": "querycustinfo", "serviceName": "查询客户", "remark": "备注", "datas": { "params": { //这个做查询时的参数 } //这里是具体业务 } } * @param businessInfo * @return */ @RequestMapping(path = "/businessApi/query",method= RequestMethod.POST) @ApiOperation(value="业务查询post请求", notes="test: 返回 2XX 表示服务正常") @ApiImplicitParam(paramType="query", name = "method", value = "用户编号", required = true, dataType = "String") @Deprecated public ResponseEntity queryPost(@RequestBody String businessInfo) { try { DataQuery dataQuery = DataQueryFactory.newInstance().builder(businessInfo); initConfig(dataQuery); queryServiceSMOImpl.commonQueryService(dataQuery); return dataQuery.getResponseEntity(); }catch (Exception e){ logger.error("请求订单异常",e); //DataTransactionFactory.createBusinessResponseJson(ResponseConstant.RESULT_CODE_ERROR,e.getMessage()+e).toJSONString(); return new ResponseEntity("请求发生异常,"+e.getMessage()+e, HttpStatus.INTERNAL_SERVER_ERROR); } } @Deprecated @RequestMapping(path = "/businessApi/do",method= RequestMethod.GET) public String doGet(HttpServletRequest request) { return DataTransactionFactory.createBusinessResponseJson(ResponseConstant.RESULT_CODE_ERROR,"不支持Get方法请求").toJSONString(); } /** * { "bId":"12345678", "serviceCode": "querycustinfo", "serviceName": "查询客户", "remark": "备注", "datas": { "params": { //这个做查询时的参数 } //这里是具体业务 } } * @param businessInfo * @return */ @Deprecated @RequestMapping(path = "/businessApi/do",method= RequestMethod.POST) public String doPost(@RequestBody String businessInfo) { try { DataQuery dataQuery = DataQueryFactory.newInstance().builder(businessInfo); initConfig(dataQuery); //这里应该添加 只有配置类数据才能处理数据,业务类数据不能操作 逻辑 queryServiceSMOImpl.commonDoService(dataQuery); return dataQuery.getResponseInfo().toJSONString(); }catch (Exception e){ logger.error("请求订单异常",e); return DataTransactionFactory.createBusinessResponseJson(ResponseConstant.RESULT_CODE_ERROR,e.getMessage()+e).toJSONString(); } } /** * 初始化配置 * @param dataQuery */ private void initConfig(DataQuery dataQuery){ dataQuery.setServiceSql(DataQueryFactory.getServiceSql(dataQuery)); } /** * 获取请求信息 * @param request * @param headers * @throws RuntimeException */ private void getRequestInfo(HttpServletRequest request,Map headers) throws Exception{ try{ super.initHeadParam(request,headers); super.initUrlParam(request,headers); }catch (Exception e){ logger.error("加载头信息失败",e); throw e; } } public IQueryServiceSMO getQueryServiceSMOImpl() { return queryServiceSMOImpl; } public void setQueryServiceSMOImpl(IQueryServiceSMO queryServiceSMOImpl) { this.queryServiceSMOImpl = queryServiceSMOImpl; } }