소스 검색

check productid is null in findByIds

xuchaolang 6 년 전
부모
커밋
150e531e17
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      rankin-product-service/src/main/java/cn/rankin/productservice/service/app/ItemService.java

+ 4 - 0
rankin-product-service/src/main/java/cn/rankin/productservice/service/app/ItemService.java

@@ -248,6 +248,10 @@ public class ItemService {
                 continue;
             }
             List<Goods> tmpList = goodsMap.get(productId);
+            if (null == tmpList){
+                log.error("productId not Found in goodsMap, pid={}", productId);
+                continue;
+            }
             tmpList.sort(new Comparator<Goods>() {
                 @Override
                 public int compare(Goods o1, Goods o2) {