Authored by mali

求购清理详情页缓存

@@ -281,6 +281,12 @@ public class BidProductService { @@ -281,6 +281,12 @@ public class BidProductService {
281 return; 281 return;
282 } 282 }
283 publishBidPriceUpdateEvent(bidStoragePrice.getProductId()); 283 publishBidPriceUpdateEvent(bidStoragePrice.getProductId());
  284 +
  285 + try {
  286 + cacheAop.clearCache(ProductController.class.getMethod("queryProductDetailTabsById", new Class[]{Integer.class, String.class}), new Object[]{bidStoragePrice.getProductId(), null});
  287 + } catch (NoSuchMethodException e) {
  288 + logger.info("method clearCache queryProductDetailTabsById wrong in productId is 【{}】", bidStoragePrice.getProductId());
  289 + }
284 } 290 }
285 291
286 /** 292 /**