내 자신의 서비스를 만들었고 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이 아님)를 얻었지만 $this->em
UserService에서 null이고 이미 언급했듯이 UserService의 생성자가 호출되지 않았습니다.
한 가지 더, Controller와 UserService는 서로 다른 번들에 있지만 (정말로 프로젝트를 구성하는 데 필요합니다) 다른 모든 것이 잘 작동하며 전화를 걸 수도 있습니다.
$this->get('doctrine.orm.entity_manager')
UserService를 가져오고 유효한 (null이 아님) EntityManager 개체를 가져 오는 데 사용하는 동일한 컨트롤러에서.
UserService와 Doctrine 구성 사이의 구성 또는 일부 링크가 누락 된 것 같습니다.