在Symfony应用程序中,您可以使用EntityValueResolver在声明控制器路由时自动获取实体。如何为该读取设置PESSIMISTIC_WRITE锁模式?这个非常基本的控制器成功地获取了Product实体,但是它没有应用锁。
#[Route('/product/{id}')] public function show(#[MapEntity] Product $product): Response { // use the Product! // ... }
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();
1条答案
按热度按时间ou6hu8tu1#
EntityValueResolver中没有将锁定义为函数参数的选项。您可以使用参数中的Request Object来执行此操作,并在函数内部应用锁。