Showing
1 changed file
with
6 additions
and
0 deletions
@@ -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 | /** |
-
Please register or login to post a comment