Symfony 2 EntityManager 注入投入使用
2022-08-30 07:42:06
我已经创建了自己的服务,我需要注入教义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"
我已经在我的应用程序中导入了.yml,就像这样config.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);
我得到了一个对象(不是空的),但是在UserService中是空的,正如我已经提到的,UserService上的构造函数从未被调用过$this->em
还有一件事,Controller和UserService在不同的捆绑包中(我真的需要它来保持项目井井有条),但仍然:其他一切都工作正常,我甚至可以调用
$this->get('doctrine.orm.entity_manager')
在我用于获取 UserService 并获取有效(非空)EntityManager 对象的同一控制器中。
看起来我缺少一段配置或UserService和Truction配置之间的一些链接。