Merge remote-tracking branch 'origin/master'

This commit is contained in:
sin 2019-05-09 00:10:57 +08:00
commit a187dbfdb5
8 changed files with 48 additions and 22 deletions

View File

@ -29,11 +29,11 @@ import static cn.iocoder.common.framework.vo.CommonResult.success;
@RequestMapping("users/cart")
public class UsersCartController {
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.provider.CartService.version}")
private CartService cartService;
@Reference(validation = "true")
private OrderService orderService;
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.consumer.CouponService.version}")
private CouponService couponService;
@PostMapping("add")

View File

@ -61,12 +61,6 @@
<artifactId>guava</artifactId>
<version>27.0.1-jre</version>
</dependency>
<dependency>
<groupId>Pingplusplus</groupId>
<artifactId>pingpp-java</artifactId>
<version>2.2.4</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>com.xuxueli</groupId>
<artifactId>xxl-job-core</artifactId>
@ -88,6 +82,19 @@
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
@ -116,4 +123,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

View File

@ -32,14 +32,14 @@ import java.util.stream.Collectors;
* 购物车服务 Service 实现类
*/
@Service
@org.apache.dubbo.config.annotation.Service(validation = "true")
@org.apache.dubbo.config.annotation.Service(validation = "true", version = "${dubbo.provider.CartService.version}")
public class CartServiceImpl implements CartService {
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.consumer.PromotionActivityService.version}")
private ProductSpuService productSpuService;
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.consumer.PromotionActivityService.version}")
private PromotionActivityService promotionActivityService;
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.consumer.CouponService.version}")
private CouponService couponService;
@Autowired

View File

@ -23,6 +23,16 @@ dubbo:
name: dubbo
scan:
base-packages: cn.iocoder.mall.order.biz.service
provider:
CartService:
version: 1.0.0
consumer:
ProductSpuService:
version: 1.0.0
PromotionActivityService:
version: 1.0.0
CouponService:
version: 1.0.0
# logging
logging:

View File

@ -58,6 +58,7 @@ public class DubboReferencePool {
reference.setInterface(notifyUrlParts[0]); // 弱类型接口名
reference.setGeneric(true); // 声明为泛化接口
reference.setApplication(application);
reference.setVersion("1.0.0"); // TODO 芋艿后面要优化下
// 获得 GenericService 对象
GenericService genericService = reference.get();
// 构建最终的 ReferenceMeta 对象

View File

@ -24,7 +24,7 @@ import static cn.iocoder.common.framework.vo.CommonResult.success;
@Api("商品搜索")
public class UsersProductSearchController {
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.provider.ProductSearchService.version}")
private ProductSearchService productSearchService;
@GetMapping("/page") // TODO 芋艿后面把 BO 改成 VO

View File

@ -2,7 +2,6 @@ package cn.iocoder.mall.search.biz.service;
import cn.iocoder.common.framework.util.CollectionUtil;
import cn.iocoder.common.framework.util.StringUtil;
import cn.iocoder.common.framework.vo.CommonResult;
import cn.iocoder.common.framework.vo.SortingField;
import cn.iocoder.mall.order.api.CartService;
import cn.iocoder.mall.order.api.bo.CalcSkuPriceBO;
@ -37,7 +36,7 @@ import java.util.Map;
import java.util.stream.Collectors;
@Service
@org.apache.dubbo.config.annotation.Service(validation = "true")
@org.apache.dubbo.config.annotation.Service(validation = "true", version = "${dubbo.provider.ProductSearchService.version}")
public class ProductSearchServiceImpl implements ProductSearchService {
private static final Integer REBUILD_FETCH_PER_SIZE = 100;
@ -47,11 +46,11 @@ public class ProductSearchServiceImpl implements ProductSearchService {
@Autowired
private ElasticsearchTemplate elasticsearchTemplate; // 因为需要使用到聚合操作只好引入 ElasticsearchTemplate
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.consumer.ProductSpuService.version}")
private ProductSpuService productSpuService;
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.consumer.ProductCategoryService.version}")
private ProductCategoryService productCategoryService;
@Reference(validation = "true")
@Reference(validation = "true", version = "${dubbo.consumer.CartService.version}")
private CartService cartService;
@Override
@ -92,10 +91,9 @@ public class ProductSearchServiceImpl implements ProductSearchService {
// 获得最小价格的 SKU 用于下面的价格计算
ProductSpuDetailBO.Sku sku = spu.getSkus().stream().min(Comparator.comparing(ProductSpuDetailBO.Sku::getPrice)).get();
// 价格计算
CommonResult<CalcSkuPriceBO> calSkuPriceResult = cartService.calcSkuPrice(sku.getId());
Assert.isTrue(calSkuPriceResult.isSuccess(), String.format("SKU(%d) 价格计算不会出错", sku.getId()));
CalcSkuPriceBO calSkuPriceResult = cartService.calcSkuPrice(sku.getId());
// 拼装结果
return ProductSearchConvert.INSTANCE.convert(spu, calSkuPriceResult.getData());
return ProductSearchConvert.INSTANCE.convert(spu, calSkuPriceResult);
}
@Override

View File

@ -18,6 +18,16 @@ dubbo:
name: dubbo
scan:
base-packages: cn.iocoder.mall.search.biz.service
provider:
ProductSearchService:
version: 1.0.0
consumer:
ProductSpuService:
version: 1.0.0
ProductCategoryService:
version: 1.0.0
CartService:
version: 1.0.0
# rocketmq
rocketmq: