Showing
1 changed file
with
5 additions
and
0 deletions
@@ -364,6 +364,11 @@ public class ProductController { | @@ -364,6 +364,11 @@ public class ProductController { | ||
364 | cacheAop.clearCache( | 364 | cacheAop.clearCache( |
365 | ProductController.class.getMethod("queryStorageInfo", new Class[] { Integer.class }), | 365 | ProductController.class.getMethod("queryStorageInfo", new Class[] { Integer.class }), |
366 | new Object[] { storageId }); | 366 | new Object[] { storageId }); |
367 | + | ||
368 | + LOG.info("clearCache queryStorageSuggestPrice storageId = {}, ", storageId); | ||
369 | + cacheAop.clearCache( | ||
370 | + ProductController.class.getMethod("queryStorageSuggestPrice", new Class[] { Collection.class }), | ||
371 | + new Object[] { storageId }); | ||
367 | } | 372 | } |
368 | } | 373 | } |
369 | } catch (Exception e) { | 374 | } catch (Exception e) { |
-
Please register or login to post a comment