Symfony 2 EntityManager注入服务

时间:2012-05-03 07:54:19

标签: php symfony dependency-injection

我已经创建了自己的服务,我需要注入doctrine EntityManager,但我没有看到我的服务调用了__construct(),并且注入不起作用。

以下是代码和配置:

<?php

namespace Test\CommonBundle\Services;
use Doctrine\ORM\EntityManager;

class UserService {

    /**
     *
     * @var EntityManager 
     */
    protected $em;

    public function __constructor(EntityManager $entityManager)
    {
        var_dump($entityManager);
        exit(); // I've never saw it happen, looks like constructor never called
        $this->em = $entityManager;
    }

    public function getUser($userId){
       var_dump($this->em ); // outputs null  
    }

}

我的捆绑包中的services.yml

services:
  test.common.userservice:
    class:  Test\CommonBundle\Services\UserService
    arguments: 
        entityManager: "@doctrine.orm.entity_manager"

我在我的应用中config.yml导入了.yml,就像那个

一样
imports:
    # a few lines skipped, not relevant here, i think
    - { resource: "@TestCommonBundle/Resources/config/services.yml" }

当我在控制器中调用服务时

    $userservice = $this->get('test.common.userservice');
    $userservice->getUser(123);

我得到一个对象(不是null),但UserService中的$this->em为null,正如我已经提到的,UserService上的构造函数从未被调用

还有一件事,Controller和UserService在不同的包中(我真的需要它来保持项目的有序),但仍然:其他工作正常,我甚至可以调用

$this->get('doctrine.orm.entity_manager')

在我用来获取UserService并获得有效(非null)EntityManager对象的同一个控制器中。

看起来我缺少配置或UserService和Doctrine配置之间的一些链接。

4 个答案:

答案 0 :(得分:112)

您的类的构造函数方法应该调用__construct(),而不是__constructor()

public function __construct(EntityManager $entityManager)
{
    $this->em = $entityManager;
}

答案 1 :(得分:64)

对于现代参考,在Symfony 2.4+中,您不能再为构造函数注入方法命名参数。根据你要传递的documentation

services:
    test.common.userservice:
        class:  Test\CommonBundle\Services\UserService
        arguments: [ "@doctrine.orm.entity_manager" ]

然后它们将按照它们通过参数列出的顺序(如果有多于1个)可用。

public function __construct(EntityManager $entityManager) {
    $this->em = $entityManager;
}

答案 2 :(得分:16)

注意Symfony 3.3 EntityManager的折旧。改为使用EntityManagerInterface。

namespace AppBundle\Service;

use Doctrine\ORM\EntityManagerInterface;

class Someclass {
    protected $em;

    public function __construct(EntityManagerInterface $entityManager)
    {
        $this->em = $entityManager;
    }

    public function somefunction() {
        $em = $this->em;
        ...
    }
}

答案 3 :(得分:7)

自2017年以及Symfony 3.3 ,您可以将存储库注册为服务,具有其所具有的所有优势。

查看我的帖子How to use Repository with Doctrine as Service in Symfony 以获得更详细的说明。

根据您的具体情况,调整的原始代码如下所示:

1。在您的服务或控制器中使用

<?php

namespace Test\CommonBundle\Services;

use Doctrine\ORM\EntityManagerInterface;

class UserService
{
    private $userRepository;

    // use custom repository over direct use of EntityManager
    // see step 2
    public function __constructor(UserRepository $userRepository)
    {
        $this->userRepository = $userRepository;
    }

    public function getUser($userId)
    {
        return $this->userRepository->find($userId);
    }
}

2。创建新的自定义存储库

<?php

namespace Test\CommonBundle\Repository;

use Doctrine\ORM\EntityManagerInterface;

class UserRepository
{
    private $repository;

    public function __construct(EntityManagerInterface $entityManager)
    {
        $this->repository = $entityManager->getRepository(UserEntity::class);
    }

    public function find($userId)
    {
        return  $this->repository->find($userId);
    }
}

3。注册服务

# app/config/services.yml
services:
    _defaults:
        autowire: true

    Test\CommonBundle\:
       resource: ../../Test/CommonBundle