new Product(request, id)
or
new Product(request.productName, request.productPrice, id)
위와 같이 불러와야 하는 자리에서
public Product toEntity(Id) {
Product product = new Product();
product.setProductId(id) // id를 수정해야 하는 경우
}
or
public Product toEntity(Id) {
return Product.builder()
.id(id) // id를 수정해야 하는 경우
.build();
}
혹은 빌더를 사용하여
request.toEntity(id)
이렇게 사용할 수 있다.