Symfony 2 服务未发现异常

Symfony 2 ServiceNotFoundException

我想在我的 symfony API 项目中使用 doctrine,我有这个控制器但是当它被调用时我得到错误 "ServiceNotFoundException"

<?php

namespace Cogc\EnquirerAPIBundle\Controller;

use FOS\RestBundle\Controller\FOSRestController;
use Doctrine;

class PageController extends FOSRestController
{
    public function getPageAction($id)
    {
        return $this->container->get('doctrine.entity_manager')->getRepository('Page')->find($id);
    }
}

可能是打字错误。

通过命令行转储容器服务定义来检查服务是否存在:

 php app/console container:debug

在我的例子中,服务被命名为 doctrine.orm.entity_manager