ZF2 how to get entity Manager from outside of controller

前端 未结 1 691
暗喜
暗喜 2021-02-04 18:30

we can access entity manager within controller using $this->getServiceLocator()->get(\'doctrine.entitymanager.orm_default\');

but how can we access en

相关标签:
1条回答
  • 2021-02-04 18:49

    The 'right' way to do it is use a factory to inject the entity manager into any classes that need it. Classes, other than factories, shouldn't really be aware of the ServiceLocator. So, your module config would look like this:

     'controllers' => array(
         'factories' => array(
              'mycontroller' => 'My\Namespace\MyControllerFactory'
         )
     )
    

    Then your factory class would look something like this:

    use Zend\ServiceManager\FactoryInterface;
    use Zend\ServiceManager\ServiceLocatorInterface;
    
    class MyControllerFactory implements FactoryInterface
    {
    
        public function createService(ServiceLocatorInterface $serviceLocator)
        {
            $serviceLocator = $serviceLocator->getServiceLocator();
    
            $myController = new MyController;
            $myController->setEntityManager(
                $serviceLocator->get('doctrine.entitymanager.orm_default')
            );
    
            return $myController;
        }
    }
    

    Follow the same pattern for any other classes that need to consume the entity manager.

    If, you have lots and lots of classes that consume the entity manager, you might want to consider adding your own Initalizer to the SerivceManager that will inject the entity manager without the need for a factory.

    0 讨论(0)
提交回复
热议问题