关于Repository的findOne问题

来源:6-3 买家订单-service创建_A

Geyaozu

2020-03-07

现在的findOne方法是不是得这么写了 ,直接传id好像不能用了图片描述

写回答

1回答

慕沐0586700

2020-03-07

@Override
public ProductInfo findOne(String productId) {
   Optional<ProductInfo> one = productInfoRepository.findById(productId);
   if (one.isPresent()) {
       ProductInfo productInfo = one.get();
       return productInfoRepository.save(productInfo);
   }
   return null;
}

1
0

Spring Boot双版本(1.5/2.1) 打造企业级微信点餐系统

从0到1开发中小型企业级Java应用,并学会迭代重构技巧

6410 学习 · 5247 问题

查看课程