|
|
|
@ -1,9 +1,11 @@ |
|
|
|
|
package com.cweb.controller.cms; |
|
|
|
|
|
|
|
|
|
import com.hfkj.common.utils.RedisUtil; |
|
|
|
|
import com.hfkj.common.utils.ResponseMsgUtil; |
|
|
|
|
import com.hfkj.entity.CmsContent; |
|
|
|
|
import com.hfkj.entity.GoodsMsg; |
|
|
|
|
import com.hfkj.entity.GoodsSpecs; |
|
|
|
|
import com.hfkj.model.BsMerModel; |
|
|
|
|
import com.hfkj.model.CmsContentModel; |
|
|
|
|
import com.hfkj.model.ResponseData; |
|
|
|
|
import com.hfkj.model.goods.GoodsModel; |
|
|
|
@ -16,6 +18,7 @@ import io.swagger.annotations.ApiOperation; |
|
|
|
|
import org.slf4j.Logger; |
|
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.stereotype.Controller; |
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
|
import org.springframework.web.bind.annotation.RequestMethod; |
|
|
|
@ -37,22 +40,30 @@ public class CmsContentController { |
|
|
|
|
|
|
|
|
|
Logger log = LoggerFactory.getLogger(CmsContentController.class); |
|
|
|
|
|
|
|
|
|
// 缓存前缀KEY
|
|
|
|
|
public final static String CACHE_KEY = "CMS:"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private RedisUtil redisUtil; |
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private CmsContentService cmsContentService; |
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private GoodsMsgService goodsMsgService; |
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private GoodsSpecsService goodsSpecsService; |
|
|
|
|
|
|
|
|
|
@RequestMapping(value="/getCms",method = RequestMethod.GET) |
|
|
|
|
@ResponseBody |
|
|
|
|
@ApiOperation(value = "查询列表") |
|
|
|
|
public ResponseData getCms(@RequestParam(value = "code" , required = false) String code, |
|
|
|
|
@RequestParam(value = "platformCode" , required = false) String platformCode) { |
|
|
|
|
try { |
|
|
|
|
|
|
|
|
|
List<CmsContentModel> cmsContents = new ArrayList<>(); |
|
|
|
|
Object cacheObj = redisUtil.get(CACHE_KEY+code+platformCode); |
|
|
|
|
if (cacheObj != null) { |
|
|
|
|
cmsContents = (List<CmsContentModel>) cacheObj; |
|
|
|
|
} else { |
|
|
|
|
Map<String , Object> map = new HashMap<>(); |
|
|
|
|
map.put("code", code); |
|
|
|
|
if (platformCode == null) { |
|
|
|
@ -62,7 +73,7 @@ public class CmsContentController { |
|
|
|
|
map.put("platformCode", platformCode); |
|
|
|
|
List<CmsContent> list = cmsContentService.getList(map); |
|
|
|
|
|
|
|
|
|
List<CmsContentModel> cmsContents = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (CmsContent cmsContent : list) { |
|
|
|
|
List<JdGoodsModel> goodsModels = new ArrayList<>(); |
|
|
|
@ -113,6 +124,10 @@ public class CmsContentController { |
|
|
|
|
cmsContents.add(cmsContentModel); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 更新缓存
|
|
|
|
|
cmsContentService.cache(cmsContents , code+platformCode); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return ResponseMsgUtil.success(cmsContents); |
|
|
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
|