最佳答案
我已经创建了自己的服务,并且需要注入原则 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 和有效(非空) EntityManager 对象的同一个控制器中。
看起来好像我丢失了一个配置或者 UserService 和 Doctrine 配置之间的某个链接。