当前位置: 首页 > 面试题库 >

将SecurityContext注入到Symfony2中的prePersist或preUpdate侦听器中,以使用户处于createdBy或updatedBy中会导致循环引用错误

罗学林
2023-03-14
问题内容

我设置了一个侦听器类,在该类中,我将在任何主义的prePersist上设置ownerid列。我的services.yml文件看起来像这样…

services:
my.listener:
    class: App\SharedBundle\Listener\EntityListener
    arguments: ["@security.context"]
    tags:
        - { name: doctrine.event_listener, event: prePersist }

我的班级看起来像这样…

use Doctrine\ORM\Event\LifecycleEventArgs;
use Symfony\Component\Security\Core\SecurityContextInterface;

class EntityListener
{

protected $securityContext;

public function __construct(SecurityContextInterface $securityContext)
{
    $this->securityContext = $securityContext;
}


/**
 *
 * @param LifecycleEventArgs $args 
 */
public function prePersist(LifecycleEventArgs $args)
{

    $entity = $args->getEntity();
    $entityManager = $args->getEntityManager();

    $entity->setCreatedby();

}
}

其结果是以下错误。

ServiceCircularReferenceException:检测到服务“
doctrine.orm.default_entity_manager”的循环引用,路径:“
doctrine.orm.default_entity_manager-> doctrine.dbal.default_connection->
my.listener-> security.context-> security.authentication.manager-> fos_user
.user_manager”。

我的假设是安全上下文已经注入到链中的某个位置,但是我不知道如何访问它。有任何想法吗?


问题答案:

我遇到了类似的问题,唯一的解决方法是将整个容器传递给构造函数(arguments: ['@service_container'])。

use Doctrine\ORM\Event\LifecycleEventArgs;
use Symfony\Component\DependencyInjection\ContainerInterface;

class MyListener
{
    protected $container;

    public function __construct(ContainerInterface $container)
    {
        $this->container = $container;
    }

    // ...

    public function prePersist(LifeCycleEventArgs $args)
    {
        $securityContext = $this->container->get('security.context');

        // ...
    }
}


 类似资料:
  • 我正在尝试将当前登录的用户插入到侦听器中。我的目标是每次用户执行任何操作时(这两种方法都不适用于我),都将current\DateTime()写入“demo\u user”表的“last\u active”列。 app/config/config.yml src/Demo/UserBundle/EventListener/ActivityWatcher.php 但是$代币总是空的...更新:没有提

  • 问题内容: 我已经打了一个拦截器将修复到现有project.the主要问题是,我一定会喜欢使用,并在照顾使用Hibernate实现JPA与会议现场(INSERT和UPDATE)。 原因? :需要进行此更改,因为有必要使用,而且我知道(因为我之前已经遇到过),liquibase使用默认的current_timestamp将时间戳转换为datetime,对于MySQL数据库来说太糟糕了。 所以我需要一

  • 问题内容: 我已经打了一个拦截器将修复到现有project.the主要问题是,我一定会喜欢使用,并在照顾使用Hibernate实现JPA与会议现场(INSERT和UPDATE)。 原因? :需要进行此更改,因为有必要使用,而且我知道(因为我之前已经面对过),liquibase使用默认的current_timestamp将时间戳转换为日期时间,这对于mysql数据库来说太糟糕了。 所以我需要一种在代

  • 我有一个中等大小的Spring应用程序。当我重构一些loc时,我注意到以下行为: 事实上,注入工作正常: 当我尝试使用构造函数注入时,环境为空,我的应用程序告诉我,由于循环引用,它无法创建配置bean: 在堆栈的某个地方: 原因:org.springframework.beans.factory.Bean货币InCreationException:创建名为appConfig的bean时出错:请求的

  • 问题内容: 如果两个模块相互导入会怎样? 为了概括这个问题,Python中的循环导入又如何呢? 问题答案: 导入确实非常简单。只要记住以下几点: 和是可执行语句。它们在运行的程序到达该行时执行。 如果模块不在中,则导入将在中创建新的模块条目,然后在模块中执行代码。在执行完成之前,它不会将控制权返回给调用模块。 如果中确实存在一个模块,则无论导入是否完成执行,导入都会简单地返回该模块。这就是循环导入

  • 我正在使用实体框架和代码优先的方法。 在我的onModelCreating中,我使用键和关系创建表(我使用的是Fluent-API方法,而不是数据注释)。 但当我尝试使用更新数据库命令生成模型时,我收到以下错误 引入外键约束的FK\U客户。发票\客户。表“发票”上的billingCenters_billingCenterId可能会导致循环或多个级联路径。指定ON DELETE NO ACTION或