80

2つのオブジェクトをに注入する必要がありますImageService。それらの1つは、のインスタンスですRepository/ImageRepository。これは次のようになります。

$image_repository = $container->get('doctrine.odm.mongodb')
    ->getRepository('MycompanyMainBundle:Image');

では、services.ymlでそれを宣言するにはどうすればよいですか?サービスは次のとおりです。

namespace Mycompany\MainBundle\Service\Image;

use Doctrine\ODM\MongoDB\DocumentRepository;

class ImageManager {
    private $manipulator;
    private $repository;

    public function __construct(ImageManipulatorInterface $manipulator, DocumentRepository $repository) {
        $this->manipulator = $manipulator;
        $this->repository = $repository;
    }

    public function findAll() {
        return $this->repository->findAll();
    }

    public function createThumbnail(ImageInterface $image) {
        return $this->manipulator->resize($image->source(), 300, 200);
    }
}
4

6 に答える 6

106

私のようにGoogleから来た人のためのクリーンアップされたソリューションは次のとおりです。

更新: Symfony 2.6 (およびそれ以降) のソリューションは次のとおりです。

services:

    myrepository:
        class: Doctrine\ORM\EntityRepository
        factory: ["@doctrine.orm.entity_manager", getRepository]
        arguments:
            - MyBundle\Entity\MyClass

    myservice:
        class: MyBundle\Service\MyService
        arguments:
            - "@myrepository"

非推奨のソリューション (Symfony 2.5 以下):

services:

    myrepository:
        class: Doctrine\ORM\EntityRepository
        factory_service: doctrine.orm.entity_manager
        factory_method: getRepository
        arguments:
            - MyBundle\Entity\MyClass

    myservice:
        class: MyBundle\Service\MyService
        arguments:
            - "@myrepository"
于 2013-12-03T10:39:15.433 に答える
46

私はこのリンクを見つけましたが、これは私にとってはうまくいきました:

parameters:
    image_repository.class:            Mycompany\MainBundle\Repository\ImageRepository
    image_repository.factory_argument: 'MycompanyMainBundle:Image'
    image_manager.class:               Mycompany\MainBundle\Service\Image\ImageManager
    image_manipulator.class:           Mycompany\MainBundle\Service\Image\ImageManipulator

services:
    image_manager:
        class: %image_manager.class%
        arguments:
          - @image_manipulator
          - @image_repository

    image_repository:
        class:           %image_repository.class%
        factory_service: doctrine.odm.mongodb
        factory_method:  getRepository
        arguments:
            - %image_repository.factory_argument%

    image_manipulator:
        class: %image_manipulator.class%
于 2012-09-01T00:31:40.147 に答える
41

各リポジトリをサービスとして定義したくない場合は、バージョンから開始して、2.4次のことを実行できます (defaultはエンティティ マネージャーの名前です)。

@=service('doctrine.orm.default_entity_manager').getRepository('MycompanyMainBundle:Image')
于 2014-09-01T04:07:23.643 に答える