假设有四个类
class Product {
private Long productId;
}
class ProductImage {
private Long productId;
private Long productImageId;
}
class ProductAttachment {
private Long productId;
private Long productAttachmentId;
}
class ProductDto extends Product {
private List<ProductImage> images;
private List<ProductAttachment> productAttachments;
}
微服务架构里,服务接口设计如下:
1 细粒度:提供三个单独的接口,其他服务调用这三个接口获取数据,另外在Api网关聚合成ProductDto后直接返回给前端
interface ProductService {
Product getProduct(Long productId);
List<ProductImage> listProductImage(Long productId);
List<ProductAttachment> listProductAttachment(Long productId);
}
2 粗粒度:提供一个聚合接口,其他服务调用这个接口,另外Api网关只做转发返回给前端
interface ProductService {
ProductDto getProduct(Long productId);
}
请问大家更倾向于哪种方式,怎么把握服务层的接口粒度?
繁华开满天机
相关分类