symfony 如何在使用EntityValueResolver提取时设置锁定模式

mdfafbf1  于 2023-02-19  发布在  其他
关注(0)|答案(1)|浏览(133)

在Symfony应用程序中,您可以使用EntityValueResolver在声明控制器路由时自动获取实体。
如何为该读取设置PESSIMISTIC_WRITE锁模式?
这个非常基本的控制器成功地获取了Product实体,但是它没有应用锁。

#[Route('/product/{id}')]
public function show(#[MapEntity] Product $product): Response
{
  // use the Product!
  // ...
}
ou6hu8tu

ou6hu8tu1#

EntityValueResolver中没有将锁定义为函数参数的选项。您可以使用参数中的Request Object来执行此操作,并在函数内部应用锁。

$entity = $this->em->find(Product::class, $id);
// use the product for some read-only code

// Later, Need to update the product
$this->em->lock($entity, LockMode::PESSIMISTIC_WRITE);

$entity->setStock($entity->getStock() - 1);
$this->em->flush();

相关问题