我一直在关注示例代码,尝试让我的学说事件监听器工作。但是,即使将类实例化为对象(我知道这是因为我记录了__construct,并且__destructor也被调用了,所以postPersist函数永远不会。)/ / p>
我的services.yml文件包含以下内容(位于AH / Core / SolutionBundle / Resources / config / services.yml中):
solutions_core_reverse_sync:
class: AH\Core\SolutionBundle\Listener\ClientSolutionReverseSyncListener
arguments: [@service_container]
tags:
- { name: doctrine.event_listener, event: postPersist }
(另外,services.yml文件正在AH / Core / SolutionBundle / DependencyInjection / SolutionExtension.php中加载 - 确认,因为其他服务运行正常)
我的实体只是一个标准的学说实体,除了使用一些额外的基于注释的集成之外,没有什么特别之处,比如JMS Serializer。唯一与大多数其他实体不同的是,我们使用Doctrine的标准SingleTableInheritence,使用@ORM \ DiscriminatorMap注释和子实体。
我的听众现在只有一个骨架,以测试它是否有效而没有任何干扰:
<?php
namespace AH\Core\SolutionBundle\Listener;
use Symfony\Component\DependencyInjection\Container;
use Doctrine\ORM\Event\LifecycleEventArgs;
class ClientSolutionReverseSyncListener
{
protected $container;
public function __construct(Container $container)
{
$this->container = $container;
echo __CLASS__.' __construct'.PHP_EOL;
}
public function postPersist(LifecycleEventArgs $args)
{
echo __CLASS__.' postPersist fired'.PHP_EOL;
}
public function __destruct()
{
echo __CLASS__.' __destruct'.PHP_EOL;
}
}
在测试它并运行下面的代码时,我只看到__construct和__destruct运行(通过回显)但不是postPersist:
$cs = $csm->findClientSolutionById(123); // don't worry where $csm comes from
$cs->setUid('do some update: '.rand(0,10000));
$this->em->persist($cs);
示例输出:
AH \ Core \ SolutionBundle \ Listener \ ClientSolutionReverseSyncListener __construct AH \ Core \ SolutionBundle \ Listener \ ClientSolutionReverseSyncListener __destruct
我不知道我在哪里出错,它跟随文档超级接近: Doctrine documentation
我还检查过这个文档,它类似于上面的内容: Symfony documentation around listeners
答案 0 :(得分:2)
以下是explanation和implementation因此,如果您希望触发事件,则需要刷新更改。持久化实体而不刷新它们不会生成主键。持久化实体也不会调用数据库插入操作。