Authored by chenchao

fix loss cache

... ... @@ -364,6 +364,11 @@ public class ProductController {
cacheAop.clearCache(
ProductController.class.getMethod("queryStorageInfo", new Class[] { Integer.class }),
new Object[] { storageId });
LOG.info("clearCache queryStorageSuggestPrice storageId = {}, ", storageId);
cacheAop.clearCache(
ProductController.class.getMethod("queryStorageSuggestPrice", new Class[] { Collection.class }),
new Object[] { storageId });
}
}
} catch (Exception e) {
... ...