From ad4aa3dea3554b168824e426e66bd9849e3193d4 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期四, 20 六月 2019 17:08:43 +0800
Subject: [PATCH] 文档重新整理加入 开发环境搭建和生产环境搭建步骤
---
WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java | 52 +++++++++++++++++++++++++++++++++++++++++-----------
1 files changed, 41 insertions(+), 11 deletions(-)
diff --git a/WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java b/WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java
index 6977c2d..aba3af7 100644
--- a/WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java
+++ b/WebService/src/main/java/com/java110/web/core/BaseComponentSMO.java
@@ -3,15 +3,15 @@
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.java110.common.cache.MappingCache;
-import com.java110.common.constant.CommonConstant;
import com.java110.common.constant.MappingConstant;
+import com.java110.common.constant.ResponseConstant;
import com.java110.common.constant.ServiceConstant;
import com.java110.common.exception.SMOException;
import com.java110.common.factory.ApplicationContextFactory;
import com.java110.common.util.Assert;
import com.java110.core.base.smo.BaseServiceSMO;
import com.java110.core.context.IPageData;
-import com.java110.web.smo.impl.LoginServiceSMOImpl;
+import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpMethod;
@@ -20,6 +20,7 @@
import org.springframework.web.client.RestTemplate;
import java.lang.reflect.Method;
+import java.util.Map;
/**
* Created by wuxw on 2019/3/22.
@@ -27,6 +28,8 @@
public class BaseComponentSMO extends BaseServiceSMO {
private static Logger logger = LoggerFactory.getLogger(BaseComponentSMO.class);
+
+ protected static final int MAX_ROW = 50;
/**
* 璋冪敤缁勪欢
@@ -105,9 +108,9 @@
ResponseEntity<String> responseEntity = null;
responseEntity = this.callCenterService(restTemplate, pd, "",
ServiceConstant.SERVICE_API_URL + "/api/query.myCommunity.byMember?memberId=" + storeId + "&memberTypeCd="
- + MappingCache.getValue(MappingConstant.DOMAIN_STORE_TYPE_2_COMMUNITY_MEMBER_TYPE,storeTypeCd), HttpMethod.GET);
+ + MappingCache.getValue(MappingConstant.DOMAIN_STORE_TYPE_2_COMMUNITY_MEMBER_TYPE, storeTypeCd), HttpMethod.GET);
if (responseEntity.getStatusCode() != HttpStatus.OK) {
- throw new SMOException(1999, "杩樻湭鍏ラ┗灏忓尯锛岃鍏堝叆椹诲皬鍖�");
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "杩樻湭鍏ラ┗灏忓尯锛岃鍏堝叆椹诲皬鍖�");
}
Assert.jsonObjectHaveKey(responseEntity.getBody().toString(), "communitys", "杩樻湭鍏ラ┗灏忓尯锛岃鍏堝叆椹诲皬鍖�");
@@ -117,20 +120,20 @@
JSONArray communitys = community.getJSONArray("communitys");
if (communitys == null || communitys.size() == 0) {
- throw new SMOException(1999, "杩樻湭鍏ラ┗灏忓尯锛岃鍏堝叆椹诲皬鍖�");
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "杩樻湭鍏ラ┗灏忓尯锛岃鍏堝叆椹诲皬鍖�");
}
- JSONObject currentCommunity = getCurrentCommunity(communitys,communityId);
+ JSONObject currentCommunity = getCurrentCommunity(communitys, communityId);
- if(currentCommunity == null){
- throw new SMOException(1999, "浼犲叆灏忓尯ID闈炴硶锛岃姝e父鎿嶄綔");
+ if (currentCommunity == null) {
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "浼犲叆灏忓尯ID闈炴硶锛岃姝e父鎿嶄綔");
}
}
- private JSONObject getCurrentCommunity(JSONArray communitys,String communityId){
+ private JSONObject getCurrentCommunity(JSONArray communitys, String communityId) {
for (int communityIndex = 0; communityIndex < communitys.size(); communityIndex++) {
- if(communityId.equals(communitys.getJSONObject(communityIndex).getString("communityId"))){
+ if (communityId.equals(communitys.getJSONObject(communityIndex).getString("communityId"))) {
return communitys.getJSONObject(communityIndex);
}
}
@@ -149,7 +152,34 @@
ResponseEntity<String> responseEntity = null;
responseEntity = this.callCenterService(restTemplate, pd, "", ServiceConstant.SERVICE_API_URL + "/api/check.user.hasPrivilege?userId=" + pd.getUserId() + "&pId=" + privilegeCode, HttpMethod.GET);
if (responseEntity.getStatusCode() != HttpStatus.OK) {
- throw new SMOException(1999, "鐢ㄦ埛娌℃湁鏉冮檺鎿嶄綔鏉冮檺" + privilegeCode);
+ throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, "鐢ㄦ埛娌℃湁鏉冮檺鎿嶄綔鏉冮檺" + privilegeCode);
}
}
+
+ /**
+ * map 鍙傛暟杞� url get 鍙傛暟 闈炵┖鍊艰浆涓篻et鍙傛暟 绌哄�煎拷鐣�
+ *
+ * @param info map鏁版嵁
+ * @return url get 鍙傛暟 甯︼紵
+ */
+ protected String mapToUrlParam(Map info) {
+ String urlParam = "";
+ if (info == null || info.isEmpty()) {
+ return urlParam;
+ }
+
+ urlParam += "?";
+
+ for (Object key : info.keySet()) {
+ if (StringUtils.isEmpty(info.get(key) + "")) {
+ continue;
+ }
+
+ urlParam += (key + "=" + info.get(key) + "&");
+ }
+
+ urlParam = urlParam.endsWith("&") ? urlParam.substring(0, urlParam.length() - 1) : urlParam;
+
+ return urlParam;
+ }
}
--
Gitblit v1.8.0