减少库存计数的代码:
ProductModel productModel = productCache.get(productId);
productModel.setStoreCount(productModel.getStoreCount() - buyCount);
productCache.replace(productId,productModel);
在我的控制台中显示 警告o.a.i.c.s.jdbc.CacheJdbcPojoStore - 意外的更新条目数[table = t_product,entry = Entry [key = 1,val = com.liwenlin.ignite.model.ProductModel@41a2aa2] expected = 1,actual = 2]